File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -8,4 +8,5 @@ flake8-implicit-str-concat.allow-multiline=false
88
99[tool .pytest .ini_options ]
1010# FIXME: pytest 8.0.0 now collects all files, stop pytest-cpp from running these
11- addopts = " --ignore=test.sh --ignore=test_coverage.sh"
11+ # the `not Base` filter is needed due to a bug in pytest w/ unittest: https://github.com/pytest-dev/pytest/issues/11552
12+ addopts = " --ignore=test.sh --ignore=test_coverage.sh -n auto -k 'not Base'"
Original file line number Diff line number Diff line change 77HW_TYPES=( 6 9 )
88for hw_type in " ${HW_TYPES[@]} " ; do
99 echo " Testing HW_TYPE: $hw_type "
10- HW_TYPE=$hw_type pytest -n auto test_* .py -k ' not Base '
10+ HW_TYPE=$hw_type pytest test_* .py
1111done
You can’t perform that action at this time.
0 commit comments