We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
python3 -m pytest
1 parent 439a0fc commit 309875eCopy full SHA for 309875e
1 file changed
tests/run_integrated_tests.sh
@@ -7,5 +7,5 @@ export PYTHONPATH="@PROJECT_BINARY_DIR@/tools/pylib:@PROJECT_SOURCE_DIR@/tools/p
7
# Pre-build the project to prevent concurrent CMake race conditions
8
cmake --build "$PROJECT_ROOT"
9
10
-pytest -m "not serial" --cache-clear -n auto --dist=loadgroup -q "$PROJECT_ROOT/tests/integrated" "$@"
11
-pytest -m serial "$PROJECT_ROOT/tests/integrated" "$@"
+python3 -m pytest -m "not serial" --cache-clear -n auto --dist=loadgroup -q "$PROJECT_ROOT/tests/integrated" "$@"
+python3 -m pytest -m serial "$PROJECT_ROOT/tests/integrated" "$@"
0 commit comments