aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-10-18 15:15:35 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-10-18 15:15:35 -0700
commitf6130951cef9cb66dba0e145335a0a68aa7f95b7 (patch)
tree1957b4b183b8641ead832fc90a5b2e483e222b43 /.travis.yml
parenta6cc54bdce87cf291903adce57211d9e890ad693 (diff)
downloadcryptography-f6130951cef9cb66dba0e145335a0a68aa7f95b7.tar.gz
cryptography-f6130951cef9cb66dba0e145335a0a68aa7f95b7.tar.bz2
cryptography-f6130951cef9cb66dba0e145335a0a68aa7f95b7.zip
Fix this in the right way
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
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"