blob: 3b8c708de7fdc55d57f39296a9281d595d66be44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Tell Travis what to do
# https://travis-ci.org/nedbat/coveragepy
language: python
sudo: false
python:
- 2.6
- 2.7
- 3.3
- 3.4
- pypy
install:
- pip install tox==2.1.1
before_script:
- coverage debug sys
script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then tox -e py26; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then tox -e py27; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.3' ]]; then tox -e py33; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.4' ]]; then tox -e py34; fi
- if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then tox -e pypy25; fi
|