parent
1519b38af0
commit
98caeedd9e
15
appveyor.yml
15
appveyor.yml
|
@ -8,10 +8,15 @@ environment:
|
||||||
matrix:
|
matrix:
|
||||||
# create multiple jobs to execute a set of tox runs on each; this is to workaround having
|
# create multiple jobs to execute a set of tox runs on each; this is to workaround having
|
||||||
# builds timing out in AppVeyor
|
# builds timing out in AppVeyor
|
||||||
# pypy is disabled until #1963 gets fixed
|
|
||||||
- TOXENV: "linting,py26,py27,py33,py34,py35"
|
- TOXENV: "linting,py26,py27,py33,py34,py35"
|
||||||
- TOXENV: "py27-pexpect,py27-xdist,py27-trial,py35-pexpect,py35-xdist,py35-trial"
|
- TOXENV: "py27-pexpect,py27-xdist,py27-trial,py35-pexpect,py35-xdist,py35-trial"
|
||||||
- TOXENV: "py27-nobyte,doctesting,freeze,docs"
|
- TOXENV: "py27-nobyte,doctesting,freeze,docs"
|
||||||
|
- TOXENV: "pypy"
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
allow_failures:
|
||||||
|
# pypy is disabled until #1963 gets fixed
|
||||||
|
- TOXENV: "pypy"
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- echo Installed Pythons
|
- echo Installed Pythons
|
||||||
|
@ -21,10 +26,10 @@ install:
|
||||||
# choco install returns non-zero, because choco install python.pypy is too
|
# choco install returns non-zero, because choco install python.pypy is too
|
||||||
# noisy)
|
# noisy)
|
||||||
# pypy is disabled until #1963 gets fixed
|
# pypy is disabled until #1963 gets fixed
|
||||||
#- choco install python.pypy > pypy-inst.log 2>&1 || (type pypy-inst.log & exit /b 1)
|
- 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
|
- set PATH=C:\tools\pypy\pypy;%PATH% # so tox can find pypy
|
||||||
#- echo PyPy installed
|
- echo PyPy installed
|
||||||
#- pypy --version
|
- pypy --version
|
||||||
|
|
||||||
- C:\Python35\python -m pip install tox
|
- C:\Python35\python -m pip install tox
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue