Skip to content

Commit

Permalink
temp: pypy3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Feb 18, 2025
1 parent d1ba6db commit 66f00b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
- "3.14"
- "pypy-3.9"
- "pypy-3.10"
- "pypy-3.11"
exclude:
# Windows pypy 3.9 and 3.10 get stuck with PyPy 7.3.15. I hope to
# unstick them, but I don't want that to block all other progress, so
Expand Down
2 changes: 1 addition & 1 deletion tests/test_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def foo():
)
])
def test_not_python(self, text: str) -> None:
msg = r"Couldn't parse '<code>' as Python source: '.*' at line \d+"
msg = r"Couldn't parse '<code>' as Python source: ['\"].*['\"] at line \d+"
with pytest.raises(NotPython, match=msg):
_ = self.parse_text(text)

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ install_command = python -m pip install -U {opts} {packages}

passenv = *
setenv =
pypy3{,9,10}: COVERAGE_TEST_CORES=pytrace
pypy3{,9,10,11}: COVERAGE_TEST_CORES=pytrace
# For some tests, we need .pyc files written in the current directory,
# so override any local setting.
PYTHONPYCACHEPREFIX=
Expand Down

0 comments on commit 66f00b5

Please sign in to comment.