2017-10-08 20:37:59 -04:00
|
|
|
sudo: false
|
|
|
|
language: python
|
2019-05-21 10:44:40 -04:00
|
|
|
install:
|
|
|
|
- pip3 install -r requirements.txt -r requirements-extra.txt
|
2019-05-22 11:29:37 -04:00
|
|
|
script: tox
|
2019-05-18 14:35:10 -04:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: "linux"
|
|
|
|
dist: "xenial"
|
|
|
|
python: "3.6"
|
|
|
|
- os: "linux"
|
|
|
|
dist: "xenial"
|
|
|
|
python: "3.7"
|
2020-03-04 19:30:30 -06:00
|
|
|
- os: "linux"
|
2020-12-28 20:59:01 -06:00
|
|
|
dist: "focal"
|
2020-03-04 19:30:30 -06:00
|
|
|
python: "3.8"
|
2020-12-28 20:59:01 -06:00
|
|
|
- os: "linux"
|
|
|
|
dist: "focal"
|
|
|
|
python: "3.9"
|
2019-05-18 14:36:43 -04:00
|
|
|
- os: "windows"
|
|
|
|
language: shell
|
2020-12-28 20:59:01 -06:00
|
|
|
python: "3.8"
|
2020-12-28 21:07:49 -06:00
|
|
|
env: "PATH=/c/python38:/c/python38/Scripts:$PATH"
|
2019-05-18 14:36:43 -04:00
|
|
|
before_install:
|
2020-12-28 20:59:01 -06:00
|
|
|
- choco install python --version=3.8.6
|
|
|
|
- cp /c/python38/python.exe /c/python38/python3.exe
|
2020-12-28 21:18:16 -06:00
|
|
|
script: tox -e py38
|