mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-04 15:29:02 +00:00
35 lines
1.2 KiB
YAML
35 lines
1.2 KiB
YAML
sudo: false
|
|
language: python
|
|
install:
|
|
- pip3 install -r requirements.txt -r requirements-extra.txt
|
|
script: tox
|
|
matrix:
|
|
include:
|
|
- os: "linux"
|
|
dist: "xenial"
|
|
python: "3.8"
|
|
script:
|
|
- tox -e style
|
|
- os: "linux"
|
|
dist: "xenial"
|
|
python: "3.6"
|
|
- os: "linux"
|
|
dist: "xenial"
|
|
python: "3.7"
|
|
- os: "linux"
|
|
dist: "xenial"
|
|
python: "3.8"
|
|
- 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
|
|
- cp /c/python37/python.exe /c/python37/python3.exe
|
|
before_script:
|
|
- pip3 install -r requirements-windows.txt
|
|
- python3 build.py
|
|
script:
|
|
- tox -e WINDOWS
|