dupeguru/.travis.yml

30 lines
1.0 KiB
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: "xenial"
python: "3.8"
2019-05-18 13:36:43 -05:00
- os: "windows"
language: shell
python: "3.7"
env: "PATH=/c/python37:/c/python37/Scripts:$PATH"
before_install:
- choco install python --version=3.7.6
- choco install make
2019-05-18 13:36:43 -05:00
- cp /c/python37/python.exe /c/python37/python3.exe
before_script:
2019-05-23 09:43:28 -05:00
- pip3 install -r requirements-windows.txt
- python3 build.py
script:
- tox -e WINDOWS