* Add multi-GPU unit test environment * Better assertion message * Temporarily disable failing test * Distinguish between multi-GPU and single-GPU CPP tests * Consolidate Python tests. Use attributes to distinguish multi-GPU Python tests from single-CPU counterparts
10 lines
199 B
Bash
Executable File
10 lines
199 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
cd python-package
|
|
python setup.py install --user
|
|
cd ..
|
|
python -m nose -v --eval-attr='(not slow) and (not mgpu)' tests/python-gpu/
|
|
./testxgboost --gtest_filter=-*.MGPU_*
|
|
|