File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -258,14 +258,14 @@ test_coverage()
258258 # Execute all tests
259259 for testfile in tests/test_* .py;
260260 do
261- coverage run --append --source=. -m pytest -rsx -W ignore::RuntimeWarning -W ignore::DeprecationWarning -W ignore::UserWarning $testfile
261+ coverage run --parallel-mode -- append --source=. -m pytest -rsx -W ignore::RuntimeWarning -W ignore::DeprecationWarning -W ignore::UserWarning $testfile
262262 check_errs $?
263263 done
264264 else
265265 # Execute custom tests
266266 for testfile in " ${custom_testfiles[@]} " ;
267267 do
268- coverage run --append --source=. -m pytest -rsx -W ignore::RuntimeWarning -W ignore::DeprecationWarning -W ignore::UserWarning $testfile
268+ coverage run --parallel-mode -- append --source=. -m pytest -rsx -W ignore::RuntimeWarning -W ignore::DeprecationWarning -W ignore::UserWarning $testfile
269269 check_errs $?
270270 done
271271 fi
You can’t perform that action at this time.
0 commit comments