diff options
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 1c9b3d8..97204bc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,23 @@ language: python -python: - - "3.5" - - "3.6" + +matrix: + include: + - os: osx + language: generic + before_install: + - brew install imagemagick + - brew install python3 + - virtualenv env -p python3 + - source env/bin/activate + - os: linux + python: 3.5 + - os: linux + python: 3.6 + before_install: - - sudo apt-get -qq update - - sudo apt-get install -y imagemagick + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y imagemagick; fi install: - pip install flake8 pylint |