Skip to content

Commit

Permalink
Specify test-suite specific option after --pyargs
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-pavlyk committed Dec 29, 2024
1 parent 71eb2fc commit 9b33343
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ jobs:
run: |
. $CONDA/etc/profile.d/conda.sh
conda activate ${{ env.TEST_ENV_NAME }}
python -m pytest -v --skip-known-top-k-failures-on-cpu --pyargs $MODULE_NAME
python -m pytest -v --pyargs $MODULE_NAME --skip-known-top-k-failures-on-cpu
test_windows:
needs: build_windows
Expand Down Expand Up @@ -399,7 +399,7 @@ jobs:
SYCL_CACHE_PERSISTENT: 1
working-directory: ${{ env.workdir }}\test_tmp
run: >-
conda activate ${{ env.TEST_ENV_NAME }} && python -m pytest -v -s --skip-known-top-k-failures-on-cpu --pyargs ${{ env.MODULE_NAME }}
conda activate ${{ env.TEST_ENV_NAME }} && python -m pytest -v -s --pyargs ${{ env.MODULE_NAME }} --skip-known-top-k-failures-on-cpu
upload_linux:
needs: test_linux
Expand Down

0 comments on commit 9b33343

Please sign in to comment.