We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df2a6bc commit 4c85f81Copy full SHA for 4c85f81
.github/scripts/unittest-linux/run_test.sh
@@ -12,6 +12,7 @@ env | grep TORCHAUDIO || true
12
export PATH="${PWD}/third_party/install/bin/:${PATH}"
13
14
declare -a args=(
15
+ '--continue-on-collection-errors'
16
'-v'
17
'--cov=torchaudio'
18
"--junitxml=${RUNNER_TEST_RESULTS_DIR}/junit.xml"
.github/scripts/unittest-windows/run_test.sh
@@ -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 commit comments