dupeguru/.travis.yml

28 lines
904 B
YAML
Raw Normal View History

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