summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Martz <matt@sivel.net>2017-11-23 10:18:16 -0600
committerMatt Martz <matt@sivel.net>2017-11-23 10:18:16 -0600
commit5fbe593fc8f34ef393813746b4b6e861b1f29017 (patch)
tree70b11eba29409b51738324338e6cb33a9de06ce4
parentf70cc86222bf425c71b292bf116abd7d67e33ee9 (diff)
Get travis working properly again
-rw-r--r--.travis.yml11
1 files changed, 8 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 406754d..20e5ecd 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,6 +8,8 @@ addons:
- python2.4
- python2.5
- python2.6
+ - python3.2
+ - python3.3
matrix:
include:
@@ -21,9 +23,9 @@ matrix:
env: TOXENV=py26
- python: 2.7
env: TOXENV=py27
- - python: 3.2
+ - python: 2.7
env: TOXENV=py32
- - python: 3.3
+ - python: 2.7
env: TOXENV=py33
- python: 3.4
env: TOXENV=py34
@@ -34,8 +36,11 @@ matrix:
- python: pypy
env: TOXENV=pypy
+before_install:
+ - if [[ $(echo "$TOXENV" | egrep -c "py35") != 0 ]]; then pyenv global system 3.5; fi;
+
install:
- - if [[ $(echo "$TOXENV" | egrep -c "py32") != 0 ]]; then pip install setuptools==17.1.1; fi
+ - if [[ $(echo "$TOXENV" | egrep -c "py32") != 0 ]]; then pip install setuptools==17.1.1; fi;
- if [[ $(echo "$TOXENV" | egrep -c "(py2[45]|py3[12])") != 0 ]]; then pip install virtualenv==1.7.2 tox==1.3; fi;
- if [[ $(echo "$TOXENV" | egrep -c "(py2[45]|py3[12])") == 0 ]]; then pip install tox; fi;