2016-08-01 14:16:54 +05:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "3.2"
|
|
|
|
- "3.3"
|
|
|
|
- "3.4"
|
|
|
|
- "3.5"
|
2016-08-03 00:42:39 +05:30
|
|
|
install:
|
|
|
|
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7.1; fi
|
|
|
|
- if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then travis_retry pip install coverage; fi
|
|
|
|
- "pip install pytest pytest-cov"
|
2016-08-01 18:09:26 +05:00
|
|
|
script: py.test --doctest-modules --cov ./
|