[CI] Run cuDF tests in Jenkins CI server (#4927)

This commit is contained in:
Philip Hyunsu Cho
2019-10-12 21:04:54 -07:00
committed by Jiaming Yuan
parent 5b4f28cc46
commit f7487e4c2a
5 changed files with 64 additions and 1 deletions

View File

@@ -35,6 +35,11 @@ case "$suite" in
./runtests-gpu.sh
;;
cudf)
source activate cudf_test
python -m pytest -v -s --fulltrace tests/python-gpu/test_from_columnar.py tests/python-gpu/test_gpu_with_dask.py
;;
cpu)
pytest -v -s --fulltrace tests/python
cd tests/distributed
@@ -42,7 +47,7 @@ case "$suite" in
;;
*)
echo "Usage: $0 {gpu|mgpu|cpu}"
echo "Usage: $0 {gpu|mgpu|cudf|cpu}"
exit 1
;;
esac