2017-10-09 00:37:59 +00:00
|
|
|
sudo: false
|
|
|
|
language: python
|
2019-05-18 18:35:10 +00:00
|
|
|
install: pip3 install tox-travis
|
2019-05-21 14:19:04 +00:00
|
|
|
script: tox -vv
|
2019-05-18 18:35:10 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: "linux"
|
|
|
|
dist: "xenial"
|
|
|
|
python: "3.5"
|
|
|
|
- os: "linux"
|
|
|
|
dist: "xenial"
|
|
|
|
python: "3.6"
|
|
|
|
- os: "linux"
|
|
|
|
dist: "xenial"
|
|
|
|
python: "3.7"
|
2019-05-18 18:36:43 +00:00
|
|
|
- os: "windows"
|
|
|
|
language: shell
|
|
|
|
python: "3.7"
|
|
|
|
env: "PATH=/c/python37:/c/python37/Scripts:$PATH"
|
|
|
|
before_install:
|
|
|
|
- choco install python make
|
|
|
|
- cp /c/python37/python.exe /c/python37/python3.exe
|
2019-05-21 14:18:41 +00:00
|
|
|
before_script:
|
|
|
|
- python build.py
|