Files
cibuildwheel/.travis.yml
T

18 lines
404 B
YAML
Raw Normal View History

matrix:
include:
- sudo: required
services:
- docker
- os: osx
script:
2017-03-23 15:20:03 +00:00
- |
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
2017-09-01 13:32:34 +01:00
pip install -r requirements-dev.txt
python ./bin/run_tests.py
2017-03-23 15:20:03 +00:00
else
# linux test requires root to clean up the wheelhouse (docker runs as root)
2017-09-01 13:32:34 +01:00
sudo pip install -r requirements-dev.txt
sudo python ./bin/run_tests.py
2017-03-23 15:20:03 +00:00
fi