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"
|
2018-06-29 18:41:23 +00:00
|
|
|
- "3.7-dev" # until 3.7 is officially supported by travis this is only (simple) way to test it
|
2018-06-12 11:09:35 +00:00
|
|
|
- "nightly"
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
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
|