Skip to content

Commit

Permalink
Make pytest run ignoring the ones with collection error (#3692)
Browse files Browse the repository at this point in the history
PyTorch lightening is having issue with the nightly PyTorch.
Let the other tests still run.
  • Loading branch information
mthrok authored Nov 9, 2023
1 parent df2a6bc commit 4c85f81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/scripts/unittest-linux/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ env | grep TORCHAUDIO || true
export PATH="${PWD}/third_party/install/bin/:${PATH}"

declare -a args=(
'--continue-on-collection-errors'
'-v'
'--cov=torchaudio'
"--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml"
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/unittest-windows/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ python -m torch.utils.collect_env
env | grep TORCHAUDIO || true

cd test
pytest --cov=torchaudio --junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml -v --durations 20 torchaudio_unittest
pytest --continue-on-collection-errors --cov=torchaudio --junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml -v --durations 20 torchaudio_unittest
coverage html

0 comments on commit 4c85f81

Please sign in to comment.