aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorDavid Reid <dreid@dreid.org>2013-11-05 13:44:39 -0800
committerDavid Reid <dreid@dreid.org>2013-11-05 13:44:39 -0800
commit940f25a1e1a5365f7af48b4f3f266e2155640806 (patch)
tree766cc524afcb85cd9923649663ac7c1b524c1288 /.travis.yml
parent8e5d79746c59cace79b68b4b47a298a3b85e31f9 (diff)
downloadcryptography-940f25a1e1a5365f7af48b4f3f266e2155640806.tar.gz
cryptography-940f25a1e1a5365f7af48b4f3f266e2155640806.tar.bz2
cryptography-940f25a1e1a5365f7af48b4f3f266e2155640806.zip
Extra yes and check for expected openssl version.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 136ddb65..547d2b58 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -27,7 +27,7 @@ env:
install:
- "[[ ${OPENSSL} == \"0.9.8\" ]] && sudo add-apt-repository \"deb http://archive.ubuntu.com/ubuntu lucid main\" || true"
- - "[[ ${OPENSSL} == \"0.9.8\" ]] && sudo apt-get -y update && sudo apt-get -y install libssl-dev/lucid || true"
+ - "[[ ${OPENSSL} == \"0.9.8\" ]] && sudo apt-get -y update && sudo apt-get -y --force-yes install libssl-dev/lucid || true"
- "[[ ${TOX_ENV} == pypy ]] && sudo add-apt-repository -y ppa:pypy/ppa || true"
- "[[ ${TOX_ENV} == pypy ]] && sudo apt-get -y update && sudo apt-get -y install pypy || true"
# This is required because we need to get rid of the Travis installed PyPy
@@ -36,6 +36,7 @@ install:
- pip install tox
script:
+ - "[[ ${OPENSSL} != "" ]] && openssl version | grep ${OPENSSL}"
- tox -e $TOX_ENV
notifications: