Add tests for Python 3.6 and on MacOS

This commit is contained in:
Guillaume Ayoub 2017-03-04 14:34:57 +01:00
parent fc04e4543b
commit 8fbb094878

View File

@ -1,14 +1,24 @@
language: python language: python
sudo: false
python: matrix:
- 3.3 include:
- 3.4 - os: linux
- 3.5 python: 3.3
- os: linux
python: 3.4
- os: linux
python: 3.5
- os: linux
python: 3.6
- os: osx
language: generic
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python3; fi
install: install:
- pip install --upgrade -e .[test] - pip3 install --upgrade -e .[test]
script: script:
- python setup.py test - python3 setup.py test
sudo: false