File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ include tox.ini
1010include setup.py
1111
1212recursive-include scripts *.py
13+ recursive-include scripts *.bat
1314
1415include .coveragerc
1516
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ environment:
66 # https://www.appveyor.com/docs/build-configuration#secure-variables
77
88 matrix :
9+ # note: please use "tox --listenvs" to populate the build matrix below
910 - TOXENV : " linting"
1011 - TOXENV : " py26"
1112 - TOXENV : " py27"
@@ -28,14 +29,7 @@ install:
2829 - echo Installed Pythons
2930 - dir c:\Python*
3031
31- # install pypy using choco (redirect to a file and write to console in case
32- # choco install returns non-zero, because choco install python.pypy is too
33- # noisy)
34- # pypy is disabled until #1963 gets fixed
35- - choco install python.pypy > pypy-inst.log 2>&1 || (type pypy-inst.log & exit /b 1)
36- - set PATH=C:\tools\pypy\pypy;%PATH% # so tox can find pypy
37- - echo PyPy installed
38- - pypy --version
32+ - if "%TOXENV%" == "pypy" scripts\install-pypy.bat
3933
4034 - C:\Python35\python -m pip install tox
4135
Original file line number Diff line number Diff line change 1+ REM install pypy using choco
2+ REM redirect to a file because choco install python.pypy is too noisy. If the command fails, write output to console
3+ choco install python.pypy > pypy-inst.log 2 >& 1 || (type pypy-inst.log & exit /b 1)
4+ set PATH = C:\tools\pypy\pypy;%PATH% # so tox can find pypy
5+ echo PyPy installed
6+ pypy --version
You can’t perform that action at this time.
0 commit comments