aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-12-05 17:44:40 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-12-05 17:44:40 -0800
commit80b84f511660fee9217852a5447e152f14880117 (patch)
treeeb66193b9fb02c4674b87ee749c4bd7a309d3321 /.travis
parente01eeb407aa77e6c8108bf08c85533d268a496bd (diff)
downloadcryptography-80b84f511660fee9217852a5447e152f14880117.tar.gz
cryptography-80b84f511660fee9217852a5447e152f14880117.tar.bz2
cryptography-80b84f511660fee9217852a5447e152f14880117.zip
Change the envvar for tox env to the officla tox one
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/install.sh6
-rwxr-xr-x.travis/run.sh2
2 files changed, 4 insertions, 4 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index 51d3097c..6dd84f2c 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -20,7 +20,7 @@ if [[ "$DARWIN" = true ]]; then
eval "$(pyenv init -)"
fi
- case "${TOX_ENV}" in
+ case "${TOXENV}" in
py26)
curl -O https://bootstrap.pypa.io/get-pip.py
sudo python get-pip.py
@@ -62,7 +62,7 @@ if [[ "$DARWIN" = true ]]; then
else
sudo add-apt-repository -y ppa:fkrull/deadsnakes
- if [[ "${TOX_ENV}" == "pypy" ]]; then
+ if [[ "${TOXENV}" == "pypy" ]]; then
sudo add-apt-repository -y ppa:pypy/ppa
fi
@@ -76,7 +76,7 @@ else
sudo apt-get install -y --force-yes libssl-dev/lucid
fi
- case "${TOX_ENV}" in
+ case "${TOXENV}" in
py26)
sudo apt-get install python2.6 python2.6-dev
;;
diff --git a/.travis/run.sh b/.travis/run.sh
index e4ff2661..1efbd60b 100755
--- a/.travis/run.sh
+++ b/.travis/run.sh
@@ -18,4 +18,4 @@ if [[ "$(uname -s)" == "Darwin" ]]; then
fi
fi
source ~/.venv/bin/activate
-tox -e $TOX_ENV -- $TOX_FLAGS
+tox -- $TOX_FLAGS