[CI] Fix cuDF install; merge 'gpu' and 'cudf' test suite (#5814)

This commit is contained in:
Philip Hyunsu Cho
2020-06-19 01:42:57 -07:00
committed by GitHub
parent a67bc64819
commit a6d9a06b7b
4 changed files with 5 additions and 68 deletions

View File

@@ -44,20 +44,6 @@ case "$suite" in
cd -
;;
cudf)
source activate cudf_test
install_xgboost
pytest -v -s -rxXs --fulltrace -m "not mgpu" \
tests/python-gpu/test_from_cudf.py tests/python-gpu/test_from_cupy.py \
tests/python-gpu/test_gpu_prediction.py
;;
mgpu-cudf)
source activate cudf_test
install_xgboost
pytest -v -s -rxXs --fulltrace -m "mgpu" tests/python-gpu/test_gpu_with_dask.py
;;
cpu)
install_xgboost
pytest -v -s --fulltrace tests/python
@@ -66,7 +52,7 @@ case "$suite" in
;;
*)
echo "Usage: $0 {gpu|mgpu|cudf|cpu}"
echo "Usage: $0 {gpu|mgpu|cpu}"
exit 1
;;
esac