* 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
9 lines
191 B
Bash
Executable File
9 lines
191 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 mgpu' tests/python-gpu/
|
|
./testxgboost --gtest_filter=*.MGPU_*
|