tractor/.travis.yml

24 lines
543 B
YAML
Raw Normal View History

2018-07-12 02:28:05 +00:00
language: python
2018-08-07 12:53:03 +00:00
matrix:
include:
- os: windows
language: sh
python: 3.7
before_install:
- choco install python3
- export PATH="/c/Python37:/c/Python37/Scripts:$PATH"
- python -m pip install --upgrade pip wheel
2018-08-07 12:53:03 +00:00
- python: 3.7
dist: xenial
sudo: required
2018-07-12 02:28:05 +00:00
install:
- cd $TRAVIS_BUILD_DIR
- pip install -U . -r requirements-test.txt
2018-07-12 02:28:05 +00:00
script:
2018-08-31 22:03:21 +00:00
- mypy tractor/ --ignore-missing-imports
2018-08-02 20:29:01 +00:00
- pytest tests/ --no-print-logs