Run the unit tests in CI

This commit is contained in:
Joe Rickerby
2017-09-01 13:32:34 +01:00
parent 5ae4da631f
commit 9091533fcc
4 changed files with 11 additions and 3 deletions
+2 -2
View File
@@ -8,10 +8,10 @@ matrix:
script:
- |
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
pip install .
pip install -r requirements-dev.txt
python ./bin/run_tests.py
else
# linux test requires root to clean up the wheelhouse (docker runs as root)
sudo pip install .
sudo pip install -r requirements-dev.txt
sudo python ./bin/run_tests.py
fi