@@ -36,7 +36,7 @@ if [[ "${test_module}" == "pathfinder" ]]; then
3636 " LD:${CUDA_PATHFINDER_TEST_LOAD_NVIDIA_DYNAMIC_LIB_STRICTNESS} " \
3737 " FH:${CUDA_PATHFINDER_TEST_FIND_NVIDIA_HEADERS_STRICTNESS} " \
3838 " BC:${CUDA_PATHFINDER_TEST_FIND_NVIDIA_BITCODE_LIB_STRICTNESS} "
39- pytest -ra -s -v --durations=20 tests/ | & tee /tmp/pathfinder_test_log.txt
39+ pytest -ra -s -v tests/ | & tee /tmp/pathfinder_test_log.txt
4040 # Report the number of "INFO test_" lines (including zero)
4141 # to support quick validations based on GHA log archives.
4242 line_count=$( awk ' /^INFO test_/ {count++} END {print count+0}' /tmp/pathfinder_test_log.txt)
@@ -51,9 +51,9 @@ elif [[ "${test_module}" == "bindings" ]]; then
5151 pip install $( ls " ${CUDA_BINDINGS_ARTIFACTS_DIR} " /* .whl) [all] --group test
5252 fi
5353 echo " Running bindings tests"
54- ${SANITIZER_CMD} pytest -rxXs -v --durations=20 -- randomly-dont-reorganize tests/
54+ ${SANITIZER_CMD} pytest -rxXs -v --randomly-dont-reorganize tests/
5555 if [[ " ${SKIP_CYTHON_TEST} " == 0 ]]; then
56- ${SANITIZER_CMD} pytest -rxXs -v --durations=20 -- randomly-dont-reorganize tests/cython
56+ ${SANITIZER_CMD} pytest -rxXs -v --randomly-dont-reorganize tests/cython
5757 fi
5858 popd
5959elif [[ " ${test_module} " == " core" || " ${test_module} " == nightly-* ]]; then
@@ -105,11 +105,11 @@ elif [[ "${test_module}" == "core" || "${test_module}" == nightly-* ]]; then
105105 echo " Installed packages before core tests:"
106106 pip list
107107 echo " Running core tests"
108- ${SANITIZER_CMD} pytest -rxXs -v --durations=20 -- randomly-dont-reorganize tests/
108+ ${SANITIZER_CMD} pytest -rxXs -v --randomly-dont-reorganize tests/
109109 # Currently our CI always installs the latest bindings (from either major version).
110110 # This is not compatible with the test requirements.
111111 if [[ " ${SKIP_CYTHON_TEST} " == 0 ]]; then
112- ${SANITIZER_CMD} pytest -rxXs -v --durations=20 -- randomly-dont-reorganize tests/cython
112+ ${SANITIZER_CMD} pytest -rxXs -v --randomly-dont-reorganize tests/cython
113113 fi
114114 popd
115115 elif [[ " ${test_module} " == " nightly-cuda-core" ]]; then
0 commit comments