* Refactor CMake scripts. * Remove CMake CUDA wrapper. * Bump CMake version for CUDA. * Use CMake to handle Doxygen. * Split up CMakeList. * Export install target. * Use modern CMake. * Remove build.sh * Workaround for gpu_hist test. * Use cmake 3.12. * Revert machine.conf. * Move CLI test to gpu. * Small cleanup. * Support using XGBoost as submodule. * Fix windows * Fix cpp tests on Windows * Remove duplicated find_package.
13 lines
274 B
Bash
Executable File
13 lines
274 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
cd python-package
|
|
python setup.py install --user
|
|
cd ..
|
|
pytest -v -s --fulltrace -m "(not mgpu) and (not slow)" tests/python-gpu
|
|
pushd .
|
|
cd build
|
|
./testxgboost --gtest_filter=-*.MGPU_*
|
|
ctest --output-on-failure --tests-regex "TestXGBoostCLI"
|
|
popd
|