Remove benchmark code in GPU test. (#5141)

* Update Jenkins script.
This commit is contained in:
Jiaming Yuan
2019-12-21 11:00:21 +08:00
committed by GitHub
parent 74f545bde3
commit b915788708
3 changed files with 2 additions and 90 deletions

View File

@@ -26,11 +26,11 @@ fi
# Run specified test suite
case "$suite" in
gpu)
pytest -v -s --fulltrace -m "(not slow) and (not mgpu)" tests/python-gpu
pytest -v -s --fulltrace -m "not mgpu" tests/python-gpu
;;
mgpu)
pytest -v -s --fulltrace -m "(not slow) and mgpu" tests/python-gpu
pytest -v -s --fulltrace -m "mgpu" tests/python-gpu
cd tests/distributed
./runtests-gpu.sh
cd -