tractor/.travis.yml

17 lines
307 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:
- python: 3.6
- 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