mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-05 07:49:02 +00:00
27 lines
911 B
YAML
27 lines
911 B
YAML
sudo: false
|
|
language: python
|
|
install:
|
|
- pip3 install -r requirements.txt -r requirements-extra.txt
|
|
script: tox -vv
|
|
matrix:
|
|
include:
|
|
- os: "linux"
|
|
dist: "xenial"
|
|
python: "3.5"
|
|
- os: "linux"
|
|
dist: "xenial"
|
|
python: "3.6"
|
|
- os: "linux"
|
|
dist: "xenial"
|
|
python: "3.7"
|
|
- os: "windows"
|
|
language: shell
|
|
python: "3.7"
|
|
env: "PATH=/c/python37:/c/python37/Scripts:$PATH"
|
|
before_install:
|
|
- choco install python make
|
|
- cp /c/python37/python.exe /c/python37/python3.exe
|
|
before_script:
|
|
- pip install -r requirements-windows.txt
|
|
- python build.py
|