Merge Debian packaging for release “4.2+dfsg.1-2”.
[debian_python-coverage.git] / .travis.yml
blob1b86b3434c431635f3c8cf49e8c9d9a41f327ffd
1 # Tell Travis what to do
2 # https://travis-ci.org/nedbat/coveragepy
4 language: python
6 sudo: false
8 python:
9   - 2.7
11 env:
12   - TOXENV=py26
13   - TOXENV=py27
14   - TOXENV=py33
15   - TOXENV=py34
16   - TOXENV=pypy
17   - TOXENV=py27 COVERAGE_COVERAGE=yes
19 sudo: false
21 install:
22   - pip install -r requirements/tox.pip
24 script:
25   - tox
26   - if [ $COVERAGE_COVERAGE == 'yes' ]; then python igor.py combine_html; fi
27   - if [ $COVERAGE_COVERAGE == 'yes' ]; then pip install codecov; fi
28   - if [ $COVERAGE_COVERAGE == 'yes' ]; then codecov; fi