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:
|
|
|
|
- os: "linux"
|
|
|
|
dist: "xenial"
|
|
|
|
python: "3.6"
|
|
|
|
- os: "linux"
|
|
|
|
dist: "xenial"
|
|
|
|
python: "3.7"
|
2020-03-05 01:30:30 +00:00
|
|
|
- os: "linux"
|
2020-12-29 02:59:01 +00:00
|
|
|
dist: "focal"
|
2020-03-05 01:30:30 +00:00
|
|
|
python: "3.8"
|
2020-12-29 02:59:01 +00:00
|
|
|
- os: "linux"
|
|
|
|
dist: "focal"
|
|
|
|
python: "3.9"
|
2019-05-18 18:36:43 +00:00
|
|
|
- os: "windows"
|
|
|
|
language: shell
|
2020-12-29 02:59:01 +00:00
|
|
|
python: "3.8"
|
2020-12-29 03:07:49 +00:00
|
|
|
env: "PATH=/c/python38:/c/python38/Scripts:$PATH"
|
2019-05-18 18:36:43 +00:00
|
|
|
before_install:
|
2020-12-29 02:59:01 +00:00
|
|
|
- choco install python --version=3.8.6
|
|
|
|
- cp /c/python38/python.exe /c/python38/python3.exe
|
2020-12-29 03:18:16 +00:00
|
|
|
script: tox -e py38
|