* Fix #3730: scikit-learn 0.20 compatibility fix sklearn.cross_validation has been removed from scikit-learn 0.20, so replace it with sklearn.model_selection * Display test names for Python tests for clarity
10 lines
149 B
Bash
Executable File
10 lines
149 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
cd python-package
|
|
python setup.py install --user
|
|
cd ..
|
|
python -m nose -v --attr='!slow' tests/python-gpu/
|
|
./testxgboost
|
|
|