We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b28b5a5 commit 8852248Copy full SHA for 8852248
1 file changed
tests/run_integrated_tests.sh
@@ -7,5 +7,6 @@ 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
-python3 -m pytest -m "not serial" --cache-clear -n auto --dist=loadgroup -q "$PROJECT_ROOT/tests/integrated" "$@"
11
-python3 -m pytest -m serial "$PROJECT_ROOT/tests/integrated" "$@"
+# Use the Python executable that CMake discovered during configuration
+"@Python3_EXECUTABLE@" -m pytest -m "not serial" --cache-clear -n auto --dist=loadgroup -q "$PROJECT_ROOT/tests/integrated" "$@"
12
+"@Python3_EXECUTABLE@" -m pytest -m serial "$PROJECT_ROOT/tests/integrated" "$@"
0 commit comments