2018-06-12 11:09:35 +00:00
|
|
|
language: python
|
2018-06-29 18:41:23 +00:00
|
|
|
dist: xenial # minimal version required for python 3.7 support
|
2018-06-12 11:09:35 +00:00
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
- "3.6"
|
|
|
|
matrix:
|
2018-10-03 16:39:45 +00:00
|
|
|
include:
|
|
|
|
- python: 3.7 # https://github.com/travis-ci/travis-ci/issues/9069#issuecomment-425720905
|
|
|
|
sudo: true
|
2018-06-12 11:09:35 +00:00
|
|
|
allow_failures:
|
|
|
|
python: "nightly"
|
|
|
|
|
|
|
|
cache: pip
|
|
|
|
before_install:
|
2018-06-29 18:38:40 +00:00
|
|
|
- rm -rf dist && python setup.py sdist # prep package distribution
|
2018-06-12 11:09:35 +00:00
|
|
|
install:
|
2018-06-29 18:38:40 +00:00
|
|
|
- pip install dist/*.tar.gz # install dependencies as specified in setup.py
|
|
|
|
- pip install -r test_requirements.txt
|
2018-06-12 11:09:35 +00:00
|
|
|
script:
|
|
|
|
- pytest
|
|
|
|
after_success:
|
|
|
|
- coveralls
|