From 452ac8ea62804ce6a86c64fc56d3ece9ccefcc03 Mon Sep 17 00:00:00 2001 From: Jiaming Yuan Date: Tue, 22 Sep 2020 14:25:10 +0800 Subject: [PATCH] Time GPU tests on CI. (#6141) --- tests/ci_build/test_python.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ci_build/test_python.sh b/tests/ci_build/test_python.sh index 28cd5e526..0ebb42765 100755 --- a/tests/ci_build/test_python.sh +++ b/tests/ci_build/test_python.sh @@ -43,14 +43,14 @@ case "$suite" in gpu) source activate gpu_test install_xgboost - pytest -v -s -rxXs --fulltrace -m "not mgpu" ${args} tests/python-gpu + pytest -v -s -rxXs --fulltrace --durations=0 -m "not mgpu" ${args} tests/python-gpu uninstall_xgboost ;; mgpu) source activate gpu_test install_xgboost - pytest -v -s -rxXs --fulltrace -m "mgpu" ${args} tests/python-gpu + pytest -v -s -rxXs --fulltrace --durations=0 -m "mgpu" ${args} tests/python-gpu cd tests/distributed ./runtests-gpu.sh