Skip to content

Commit

Permalink
Merge pull request #590 from njsmith/pypy-3.6-branch
Browse files Browse the repository at this point in the history
Try testing PyPy's 3.6 branch too
  • Loading branch information
pquentin authored Aug 2, 2018
2 parents 2e14510 + bd44469 commit eeafa1e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ matrix:
# The pypy tests are slow, so we list them first
- python: pypy3.5
- language: generic
env: USE_PYPY_NIGHTLY=1
env: PYPY_NIGHTLY_BRANCH=py3.5
- language: generic
env: PYPY_NIGHTLY_BRANCH=py3.6
- python: 3.5.0
- python: 3.5.2
- python: 3.6
Expand Down
4 changes: 2 additions & 2 deletions ci/travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ if [ "$TRAVIS_OS_NAME" = "osx" ]; then
source testenv/bin/activate
fi

if [ "$USE_PYPY_NIGHTLY" = "1" ]; then
curl -fLo pypy.tar.bz2 http://buildbot.pypy.org/nightly/py3.5/pypy-c-jit-latest-linux64.tar.bz2
if [ "$PYPY_NIGHTLY_BRANCH" != "" ]; then
curl -fLo pypy.tar.bz2 http://buildbot.pypy.org/nightly/${PYPY_NIGHTLY_BRANCH}/pypy-c-jit-latest-linux64.tar.bz2
if [ ! -s pypy.tar.bz2 ]; then
# We know:
# - curl succeeded (200 response code; -f means "exit with error if
Expand Down

0 comments on commit eeafa1e

Please sign in to comment.