Skip to content

Commit

Permalink
copy the python testdata too
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbartholomew committed Feb 28, 2024
1 parent c19919b commit 2e861b4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build_python_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@ jobs:
# See https://cibuildwheel.readthedocs.io/en/stable/options/#examples_1
CIBW_SKIP: "*-win32 pp* *-manylinux_i686 *-musllinux_i686 cp36-* cp37-* cp38-*"
CIBW_TEST_COMMAND: >
cp {package}/python/_jsonnet_test.py ./jsonnet_test.py &&
python ./jsonnet_test.py
mkdir ./testcode &&
cp {package}/python/_jsonnet_test.py ./testcode/jsonnet_test.py &&
cp -R {package}/python/testdata ./testcode/testdata &&
python ./testcode/jsonnet_test.py
- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 2e861b4

Please sign in to comment.