2018-07-12 02:28:05 +00:00
|
|
|
language: python
|
2018-08-07 12:53:03 +00:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
2019-01-24 01:02:51 +00:00
|
|
|
# - python: 3.6
|
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
|
2018-08-13 15:37:09 +00:00
|
|
|
- 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
|