Skip to content

Commit

Permalink
Limit output of pytest durations
Browse files Browse the repository at this point in the history
Durations output were previously increased to show all tests to allow us
debugging of timeouts. However, now they have not been as important so
limiting to only the 50 longer running tests is best to decrease log
lengths, we may soon remove it entirely if they are not currently
important.
  • Loading branch information
pentschev committed Oct 9, 2024
1 parent fe16796 commit 2c18ee4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/test_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ UCX_WARN_UNUSED_ENV_VARS=n \
UCX_MEMTYPE_CACHE=n \
timeout 60m pytest \
-vv \
--durations=0 \
--durations=50 \
--capture=no \
--cache-clear \
--junitxml="${RAPIDS_TESTS_DIR}/junit-dask-cuda.xml" \
Expand All @@ -73,7 +73,7 @@ UCX_WARN_UNUSED_ENV_VARS=n \
UCX_MEMTYPE_CACHE=n \
timeout 30m pytest \
-vv \
--durations=0 \
--durations=50 \
--capture=no \
--cache-clear \
--junitxml="${RAPIDS_TESTS_DIR}/junit-dask-cuda-legacy.xml" \
Expand Down

0 comments on commit 2c18ee4

Please sign in to comment.