Add tests for Python 3.6 and on MacOS
This commit is contained in:
parent
fc04e4543b
commit
8fbb094878
26
.travis.yml
26
.travis.yml
@ -1,14 +1,24 @@
|
||||
language: python
|
||||
sudo: false
|
||||
|
||||
python:
|
||||
- 3.3
|
||||
- 3.4
|
||||
- 3.5
|
||||
matrix:
|
||||
include:
|
||||
- os: linux
|
||||
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:
|
||||
- pip install --upgrade -e .[test]
|
||||
- pip3 install --upgrade -e .[test]
|
||||
|
||||
script:
|
||||
- python setup.py test
|
||||
|
||||
sudo: false
|
||||
- python3 setup.py test
|
Loading…
Reference in New Issue
Block a user