Python/.travis.yml

15 lines
364 B
YAML
Raw Normal View History

2016-08-01 09:16:54 +00:00
language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.6-dev"
2017-06-21 01:08:03 +00:00
2016-08-02 19:12:39 +00:00
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"
2017-06-21 01:08:03 +00:00
script: py.test --doctest-modules --cov ./