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 7a24bd8 commit 400276aCopy full SHA for 400276a
1 file changed
ci/tools/run-tests
@@ -35,7 +35,9 @@ 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; print line count otherwise
40
+ grep '^INFO test_' /tmp/pathfinder_test_log.txt | wc -l
41
popd
42
elif [[ "${test_module}" == "bindings" ]]; then
43
pushd "${CUDA_BINDINGS_ARTIFACTS_DIR}"
0 commit comments