2017-10-09 00:37:59 +00:00
|
|
|
sudo: false
|
|
|
|
language: python
|
2019-05-21 14:44:40 +00:00
|
|
|
install:
|
|
|
|
- pip3 install -r requirements.txt -r requirements-extra.txt
|
2019-05-22 15:29:37 +00:00
|
|
|
script: tox
|
2019-05-18 18:35:10 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
2020-05-30 13:40:23 +00:00
|
|
|
- os: "linux"
|
|
|
|
dist: "xenial"
|
|
|
|
python: "3.8"
|
|
|
|
script:
|
|
|
|
- tox -e style
|
2019-05-18 18:35:10 +00:00
|
|
|
- os: "linux"
|
|
|
|
dist: "xenial"
|
|
|
|
python: "3.6"
|
|
|
|
- os: "linux"
|
|
|
|
dist: "xenial"
|
|
|
|
python: "3.7"
|
2020-03-05 01:30:30 +00:00
|
|
|
- os: "linux"
|
|
|
|
dist: "xenial"
|
|
|
|
python: "3.8"
|
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:
|
2019-12-31 23:33:17 +00:00
|
|
|
- choco install python --version=3.7.6
|
|
|
|
- choco install make
|
2019-05-18 18:36:43 +00:00
|
|
|
- cp /c/python37/python.exe /c/python37/python3.exe
|
2019-05-21 14:18:41 +00:00
|
|
|
before_script:
|
2019-05-23 14:43:28 +00:00
|
|
|
- pip3 install -r requirements-windows.txt
|
|
|
|
- python3 build.py
|
2019-05-22 15:29:37 +00:00
|
|
|
script:
|
|
|
|
- tox -e WINDOWS
|