Skip to content

Commit

Permalink
Add option to download all test data concurrently
Browse files Browse the repository at this point in the history
  • Loading branch information
naegelejd committed Dec 16, 2024
1 parent 936fded commit 32e3cce
Show file tree
Hide file tree
Showing 5 changed files with 358 additions and 322 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pingvin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
test_command=". /opt/conda/etc/profile.d/conda.sh \
&& conda activate pingvin \
&& cd /opt/e2e-test/ \
&& pytest --echo-log-on-failure"
&& pytest --download-all --echo-log-on-failure"
docker run --rm --gpus=all --entrypoint /bin/bash "${image_name}" -c "$test_command"
publish-docker-images:
Expand Down
2 changes: 1 addition & 1 deletion conda/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ cd test/e2e/
test -d cases
test -f conftest.py

pytest
pytest --download-all
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ unit-test: build
cd build && ctest

e2e-test: install
cd test/e2e && pytest
cd test/e2e && pytest --download-all
Loading

0 comments on commit 32e3cce

Please sign in to comment.