diff options
author | David Reid <dreid@dreid.org> | 2013-11-06 11:13:42 -0800 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2013-11-06 11:13:42 -0800 |
commit | 644eb4106b540e54d02ba018b879707cbb073e91 (patch) | |
tree | 690b52f49f77a431f6ed87afc70e90f0d0cfe528 | |
parent | 30eff66f48189671740f6f1a423454c68dcb9ae8 (diff) | |
download | cryptography-644eb4106b540e54d02ba018b879707cbb073e91.tar.gz cryptography-644eb4106b540e54d02ba018b879707cbb073e91.tar.bz2 cryptography-644eb4106b540e54d02ba018b879707cbb073e91.zip |
Don't silence any failures.
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 8350ebca..39fbc971 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,12 +28,12 @@ env: install: - "sudo add-apt-repository \"deb http://archive.ubuntu.com/ubuntu/ lucid main\"" - sudo add-apt-repository -y ppa:pypy/ppa - - sudo apt-get -y update || true - - "[[ ${OPENSSL} == \"0.9.8\" ]] && sudo apt-get -y --force-yes install libssl-dev/lucid || true" - - "[[ ${TOX_ENV} == pypy ]] && sudo apt-get -y install pypy || true" + - sudo apt-get -y update + - "[[ ${OPENSSL} == \"0.9.8\" ]] && sudo apt-get -y --force-yes install libssl-dev/lucid" + - "[[ ${TOX_ENV} == pypy ]] && sudo apt-get -y install pypy" # This is required because we need to get rid of the Travis installed PyPy # or it'll take precedence over the PPA installed one. - - "[[ ${TOX_ENV} == pypy ]] && sudo rm -rf /usr/local/pypy/bin || true" + - "[[ ${TOX_ENV} == pypy ]] && sudo rm -rf /usr/local/pypy/bin" - pip install tox coveralls script: |