blob: be931e7ca71fdfcb1cb2f291845079bbff49cccf (
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
27
|
# 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
- python setup.py clean develop
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 pypy; fi
|