We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fabb351 commit ecfa743Copy full SHA for ecfa743
.travis-install.sh
@@ -0,0 +1,14 @@
1
+#!/bin/bash
2
+set -e
3
+set -x
4
+
5
+if [[ "${TOX_ENV}" == "pypy" ]]; then
6
+ sudo add-apt-repository -y ppa:pypy/ppa
7
+ sudo apt-get -qy update
8
+ sudo apt-get install -y pypy
9
+ # This is required because we need to get rid of the Travis installed PyPy
10
+ # or it'll take precedence over the PPA installed one.
11
+ sudo rm -rf /usr/local/pypy/bin
12
+fi
13
14
+pip install tox coveralls
.travis.yml
@@ -11,7 +11,7 @@ matrix:
- env: TOX_ENV=pypy
install:
- - pip install -M tox
+ - ./.travis-install.sh
15
16
script:
17
- tox -e $TOX_ENV
0 commit comments