2015-07-17 17:56:06 +02:00
|
|
|
language: python
|
2017-03-04 14:34:57 +01:00
|
|
|
sudo: false
|
|
|
|
|
|
|
|
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
|
2015-07-17 17:56:06 +02:00
|
|
|
|
2017-03-04 14:34:57 +01:00
|
|
|
before_install:
|
|
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python3; fi
|
2015-07-17 17:56:06 +02:00
|
|
|
|
2016-04-10 11:13:54 +02:00
|
|
|
install:
|
2017-03-04 14:34:57 +01:00
|
|
|
- pip3 install --upgrade -e .[test]
|
2016-04-10 11:13:54 +02:00
|
|
|
|
2016-05-12 19:24:24 +02:00
|
|
|
script:
|
2017-03-04 14:34:57 +01:00
|
|
|
- python3 setup.py test
|