Update .travis.yml

This commit is contained in:
Anup Kumar Panwar 2017-09-29 11:22:32 +05:30 committed by GitHub
parent d3f3a88678
commit 8bae14ba1c

View File

@ -1,14 +1,19 @@
language: python language: python
python: python:
- "2.6"
- "2.7"
- "3.2" - "3.2"
- "3.3" - "3.3"
- "3.4" - "3.4"
- "3.5" - "3.5"
- "3.5-dev" # 3.5 development branch
- "3.6" - "3.6"
- "3.6-dev" - "3.6-dev" # 3.6 development branch
- "3.7-dev" # 3.7 development branch
- "nightly"
install: install:
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7.1; fi - pip install -r requirements.txt
- if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then travis_retry pip install coverage; fi
- "pip install pytest pytest-cov" script:
script: py.test --doctest-modules --cov ./ - py.test