We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac724d0 commit 5876145Copy full SHA for 5876145
ci/tools/run-tests
@@ -35,7 +35,10 @@ if [[ "${test_module}" == "pathfinder" ]]; then
35
"LD:${CUDA_PATHFINDER_TEST_LOAD_NVIDIA_DYNAMIC_LIB_STRICTNESS} " \
36
"FH:${CUDA_PATHFINDER_TEST_FIND_NVIDIA_HEADERS_STRICTNESS}"
37
pwd
38
- pytest -ra -s -v tests/
+ pytest -ra -s -v tests/ |& tee /tmp/pathfinder_test_log.txt
39
+ # Fail if no "INFO test_" lines are found; capture line count otherwise
40
+ 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