summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-08-31 15:30:27 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-08-31 15:30:27 -0400
commit21002bdbef3a4d86d3c4f8f0a5d457ffd2fffbdf (patch)
tree61e1d10ee5e52465e34f2e695b892703eca0f5cb /.travis.yml
parent8beed0f6a58b254c8350220a83a039ef33a84fa5 (diff)
downloadpython-coveragepy-21002bdbef3a4d86d3c4f8f0a5d457ffd2fffbdf.tar.gz
A simpler .travis.yml file
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml21
1 files changed, 8 insertions, 13 deletions
diff --git a/.travis.yml b/.travis.yml
index be931e7..c12107f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,22 +6,17 @@ language: python
sudo: false
python:
- - 2.6
- 2.7
- - 3.3
- - 3.4
- - pypy
+
+env:
+ - TOXENV=py26
+ - TOXENV=py27
+ - TOXENV=py33
+ - TOXENV=py34
+ - TOXENV=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
+ - tox