Skip to content

Commit

Permalink
Allow failure of pypy on AppVeyor
Browse files Browse the repository at this point in the history
Related to #1963
  • Loading branch information
nicoddemus committed Nov 11, 2016
1 parent cbecb35 commit 94bde83
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ environment:
matrix:
# create multiple jobs to execute a set of tox runs on each; this is to workaround having
# builds timing out in AppVeyor
# pypy is disabled until #1963 gets fixed
- TOXENV: "linting,py26,py27,py33,py34,py35"
- TOXENV: "py27-pexpect,py27-xdist,py27-trial,py35-pexpect,py35-xdist,py35-trial"
- TOXENV: "py27-nobyte,doctesting,freeze,docs"
- TOXENV: "pypy"
allow_failures:
# pypy is disabled until #1963 gets fixed
- TOXENV: "pypy"

install:
- echo Installed Pythons
Expand All @@ -21,10 +24,10 @@ install:
# choco install returns non-zero, because choco install python.pypy is too
# noisy)
# pypy is disabled until #1963 gets fixed
#- choco install python.pypy > pypy-inst.log 2>&1 || (type pypy-inst.log & exit /b 1)
#- set PATH=C:\tools\pypy\pypy;%PATH% # so tox can find pypy
#- echo PyPy installed
#- pypy --version
- choco install python.pypy > pypy-inst.log 2>&1 || (type pypy-inst.log & exit /b 1)
- set PATH=C:\tools\pypy\pypy;%PATH% # so tox can find pypy
- echo PyPy installed
- pypy --version

- C:\Python35\python -m pip install tox

Expand Down

0 comments on commit 94bde83

Please sign in to comment.