36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
language: python
|
|
dist: xenial
|
|
sudo: required
|
|
|
|
matrix:
|
|
include:
|
|
- name: "Windows, Python Latest"
|
|
os: windows
|
|
language: sh
|
|
python: 3.x # only works on linux
|
|
before_install:
|
|
- choco install python3 --params "/InstallDir:C:\\Python"
|
|
- export PATH="/c/Python:/c/Python/Scripts:$PATH"
|
|
- python -m pip install --upgrade pip wheel
|
|
|
|
- name: "Windows, Python 3.7"
|
|
os: windows
|
|
python: 3.7 # only works on linux
|
|
language: sh
|
|
before_install:
|
|
- choco install python3 --version 3.7.4 --params "/InstallDir:C:\\Python"
|
|
- export PATH="/c/Python:/c/Python/Scripts:$PATH"
|
|
- python -m pip install --upgrade pip wheel
|
|
|
|
- python: 3.7 # this works for Linux but is ignored on macOS or Windows
|
|
- python: 3.8
|
|
|
|
install:
|
|
- cd $TRAVIS_BUILD_DIR
|
|
- pip install -U pip
|
|
- pip install -U . -r requirements-test.txt --upgrade-strategy eager
|
|
|
|
script:
|
|
- mypy tractor/ --ignore-missing-imports
|
|
- pytest tests/ --no-print-logs
|