diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-18 15:15:35 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-18 15:15:35 -0700 |
commit | f6130951cef9cb66dba0e145335a0a68aa7f95b7 (patch) | |
tree | 1957b4b183b8641ead832fc90a5b2e483e222b43 | |
parent | a6cc54bdce87cf291903adce57211d9e890ad693 (diff) | |
download | cryptography-f6130951cef9cb66dba0e145335a0a68aa7f95b7.tar.gz cryptography-f6130951cef9cb66dba0e145335a0a68aa7f95b7.tar.bz2 cryptography-f6130951cef9cb66dba0e145335a0a68aa7f95b7.zip |
Fix this in the right way
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 6d164863..89f0b101 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,9 +9,12 @@ env: - TOX_ENV=docs - TOX_ENV=pep8 +before_install: + - sudo rm /etc/apt/sources.list.d/mongodb.list + install: - "[[ ${TOX_ENV} == pypy ]] && sudo add-apt-repository -y ppa:pypy/ppa || true" - - "[[ ${TOX_ENV} == pypy ]] && (sudo apt-get -y update || true) && sudo apt-get -y install pypy || 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 # or it'll take precedence over the PPA installed one. - "[[ ${TOX_ENV} == pypy ]] && sudo rm -rf /usr/local/pypy/bin || true" |