File tree 2 files changed +9
-11
lines changed
2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 2
2
set -e
3
3
set -x
4
4
5
- if [[ " ${TOX_ENV } " == " pypy" ]]; then
5
+ if [[ " ${TOXENV } " == " pypy" ]]; then
6
6
sudo add-apt-repository -y ppa:pypy/ppa
7
7
sudo apt-get -qy update
8
8
sudo apt-get install -y pypy
9
9
# This is required because we need to get rid of the Travis installed PyPy
10
10
# or it'll take precedence over the PPA installed one.
11
11
sudo rm -rf /usr/local/pypy/bin
12
12
fi
13
-
14
- pip install tox coveralls
Original file line number Diff line number Diff line change 1
1
language : python
2
2
python : 2.7
3
3
env :
4
- - TOX_ENV =py27
5
- - TOX_ENV =precise
6
- - TOX_ENV =trunk
7
- - TOX_ENV =pypy
4
+ - TOXENV =py27
5
+ - TOXENV =precise
6
+ - TOXENV =trunk
7
+ - TOXENV =pypy
8
8
9
9
matrix :
10
10
allow_failures :
11
- - env : TOX_ENV =pypy
11
+ - env : TOXENV =pypy
12
12
13
13
install :
14
- - ./.travis-install.sh
14
+ - ./.travis-workarounds.sh
15
+ - pip install -M tox
15
16
16
- script :
17
- - tox -e $TOX_ENV
17
+ script : tox
18
18
19
19
notifications :
20
20
irc :
You can’t perform that action at this time.
0 commit comments