Skip to content

Commit

Permalink
Increase Python core tests timeout (#332)
Browse files Browse the repository at this point in the history
The timeout for Python core tests seems now too tight, possibly due to high CI load at times. Double timeout from 2 minutes to 4 minutes.
  • Loading branch information
pentschev authored Nov 25, 2024
1 parent 5238822 commit 243d143
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/test_common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ run_cpp_port_retry() {

#################################### Python ####################################
run_py_tests() {
CMD_LINE="timeout 2m python -m pytest -vs python/ucxx/ucxx/_lib/tests/"
CMD_LINE="timeout 4m python -m pytest -vs python/ucxx/ucxx/_lib/tests/"
log_command "${CMD_LINE}"
timeout 2m python -m pytest -vs python/ucxx/ucxx/_lib/tests/
timeout 4m python -m pytest -vs python/ucxx/ucxx/_lib/tests/
}

run_py_tests_async() {
Expand Down

0 comments on commit 243d143

Please sign in to comment.