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
fi
if [ "$VARIANT" = "python-api" ]; then
../cmake/bin/cmake ../tools/python -DCMAKE_BUILD_TYPE=Release
../cmake/bin/cmake --build . --target install -- -j 2
../python_examples/svm_rank.py
rm -rf *
python setup.py test --clean
pip install --user numpy
../cmake/bin/cmake ../tools/python -DCMAKE_BUILD_TYPE=Release
../cmake/bin/cmake --build . --target install -- -j 2
../python_examples/svm_rank.py
python setup.py test --clean
fi
if [ "$VARIANT" = "python3-api" ]; then
../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
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
python3 setup.py test --clean
pip install --user numpy
python3 setup.py test --clean
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