Commit 63f65850 authored by Davis King's avatar Davis King

Make travis python tests run via setup.py

parent 88dd3e4d
...@@ -16,25 +16,13 @@ if [ "$VARIANT" = "examples" ]; then ...@@ -16,25 +16,13 @@ if [ "$VARIANT" = "examples" ]; then
fi fi
if [ "$VARIANT" = "python-api" ]; then if [ "$VARIANT" = "python-api" ]; then
../cmake/bin/cmake ../tools/python -DCMAKE_BUILD_TYPE=Release python setup.py test --clean
../cmake/bin/cmake --build . --target install -- -j 2
../python_examples/svm_rank.py
rm -rf *
pip install --user numpy pip install --user numpy
../cmake/bin/cmake ../tools/python -DCMAKE_BUILD_TYPE=Release python setup.py test --clean
../cmake/bin/cmake --build . --target install -- -j 2
../python_examples/svm_rank.py
fi fi
if [ "$VARIANT" = "python3-api" ]; then if [ "$VARIANT" = "python3-api" ]; then
../cmake/bin/cmake ../tools/python -DPYTHON3=ON -DCMAKE_BUILD_TYPE=Release python3 setup.py test --clean
../cmake/bin/cmake --build . --target install -- -j 2 pip install --user numpy
python3 ../python_examples/svm_rank.py python3 setup.py test --clean
pip3 install --user numpy
rm -rf *
../cmake/bin/cmake ../tools/python -DPYTHON3=ON -DCMAKE_BUILD_TYPE=Release
../cmake/bin/cmake --build . --target install -- -j 2
python3 ../python_examples/svm_rank.py
fi fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment