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 400276a commit 2d1e9d4Copy full SHA for 2d1e9d4
1 file changed
ci/tools/run-tests
@@ -36,8 +36,9 @@ if [[ "${test_module}" == "pathfinder" ]]; then
36
"FH:${CUDA_PATHFINDER_TEST_FIND_NVIDIA_HEADERS_STRICTNESS}"
37
pwd
38
pytest -ra -s -v tests/ |& tee /tmp/pathfinder_test_log.txt
39
- # Fail if no "INFO test_" lines are found; print line count otherwise
40
- grep '^INFO test_' /tmp/pathfinder_test_log.txt | wc -l
+ # Fail if no "INFO test_" lines are found; capture line count otherwise
+ line_count=$(grep '^INFO test_' /tmp/pathfinder_test_log.txt | wc -l)
41
+ echo "Number of \"INFO test_\" lines: $line_count"
42
popd
43
elif [[ "${test_module}" == "bindings" ]]; then
44
pushd "${CUDA_BINDINGS_ARTIFACTS_DIR}"
0 commit comments