-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Fix test_invalidEscape with recent PyPy3 versions, closes #584 * CI: update PyPY version in Travis and AppVeyor Also make it easier to update for AppVeyor.
- Loading branch information
Showing
4 changed files
with
23 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
# To activate, change the Appveyor settings to use `.appveyor.yml`. | ||
environment: | ||
PYPY_PY2_VERSION: 2.7 | ||
PYPY_PY3_VERSION: 3.6 | ||
PYPY_VERSION: 7.3.2 | ||
install: | ||
- python -m pip install --upgrade tox virtualenv | ||
|
||
- ps: (New-Object Net.WebClient).DownloadFile('https://downloads.python.org/pypy/pypy2.7-v7.1.1-win32.zip', "$env:appveyor_build_folder\pypy2.7-v7.1.1-win32.zip") | ||
- ps: 7z x pypy2.7-v7.1.1-win32.zip | Out-Null | ||
- move pypy2.7-v7.1.1-win32 C:\ | ||
- 'SET PATH=C:\pypy2.7-v7.1.1-win32\;%PATH%' | ||
- ps: (New-Object Net.WebClient).DownloadFile("https://downloads.python.org/pypy/pypy${env:PYPY_PY2_VERSION}-v${env:PYPY_VERSION}-win32.zip", "$env:appveyor_build_folder\pypy${env:PYPY_PY2_VERSION}-v${env:PYPY_VERSION}-win32.zip") | ||
- ps: 7z x pypy${env:PYPY_PY2_VERSION}-v${env:PYPY_VERSION}-win32.zip | Out-Null | ||
- move pypy%PYPY_PY2_VERSION%-v%PYPY_VERSION%-win32 C:\ | ||
- 'SET PATH=C:\pypy%PYPY_PY2_VERSION%-v%PYPY_VERSION%-win32\;%PATH%' | ||
|
||
- ps: (New-Object Net.WebClient).DownloadFile('https://downloads.python.org/pypy/pypy3.6-v7.1.1-win32.zip', "$env:appveyor_build_folder\pypy3.6-v7.1.1-win32.zip") | ||
- ps: 7z x pypy3.6-v7.1.1-win32.zip | Out-Null | ||
- move pypy3.6-v7.1.1-win32 C:\ | ||
- 'SET PATH=C:\pypy3.6-v7.1.1-win32\;%PATH%' | ||
- ps: (New-Object Net.WebClient).DownloadFile("https://downloads.python.org/pypy/pypy${env:PYPY_PY3_VERSION}-v${env:PYPY_VERSION}-win32.zip", "$env:appveyor_build_folder\pypy${env:PYPY_PY3_VERSION}-v${env:PYPY_VERSION}-win32.zip") | ||
- ps: 7z x pypy${env:PYPY_PY3_VERSION}-v${env:PYPY_VERSION}-win32.zip | Out-Null | ||
- move pypy%PYPY_PY3_VERSION%-v%PYPY_VERSION%-win32 C:\ | ||
- 'SET PATH=C:\pypy%PYPY_PY3_VERSION%-v%PYPY_VERSION%-win32\;%PATH%' | ||
|
||
build: off | ||
|
||
test_script: | ||
- python -m tox | ||
- python -m tox --skip-missing-interpreters=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters