Skip to content

Commit ef84767

Browse files
committed
Update tox local tests for pypy3 and new github url
1 parent 4ccce9b commit ef84767

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py33,py34,py35,py36,py37,pypy
2+
envlist = py27,py33,py34,py35,py36,py37,pypy,pypy3
33

44
[testenv]
55
passenv = *

toxtest.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@ pyversions=(2.7.7
1212
3.5.5
1313
3.6.6
1414
3.7.0
15-
pypy-2.3.1)
15+
pypy2.7-6.0.0
16+
pypy3.5-6.0.0)
1617

1718
# first make sure that pyenv is installed
1819
if [ ! -s "$HOME/.pyenv/bin/pyenv" ]; then
19-
curl -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash
20+
curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
2021
fi
2122

2223
# Update pyenv (required for new python versions to be available)
23-
(cd $HOME/.pyenv && git pull)
24+
pyenv update
2425

2526
# add pyenv to our path and initialize (if this has not already been done)
2627
export PATH="$HOME/.pyenv/bin:$PATH"

0 commit comments

Comments
 (0)