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 ea45bbf commit 721781fCopy full SHA for 721781f
1 file changed
ci/tools/run-tests
@@ -34,8 +34,10 @@ if [[ "${test_module}" == "pathfinder" ]]; then
34
"FH:${CUDA_PATHFINDER_TEST_FIND_NVIDIA_HEADERS_STRICTNESS}"
35
pytest -ra -s -v --durations=0 tests/ |& tee /tmp/pathfinder_test_log.txt
36
# Fail if no "INFO test_" lines are found; capture line count otherwise
37
- line_count=$(grep '^INFO test_' /tmp/pathfinder_test_log.txt | wc -l)
38
- echo "Number of \"INFO test_\" lines: $line_count"
+ if [ -z "${PYTEST_ADDOPTS}" ]; then
+ line_count=$(grep '^INFO test_' /tmp/pathfinder_test_log.txt | wc -l)
39
+ echo "Number of \"INFO test_\" lines: $line_count"
40
+ fi
41
popd
42
elif [[ "${test_module}" == "bindings" ]]; then
43
echo "Installing bindings wheel"
0 commit comments