Skip to content

Commit c51b64c

Browse files
committed
Stop testing on PyPy 3.9.
PyPy v7.3.17 no longer provides PyPy 3.9. Also the test suite was flaky under PyPy 3.9.
1 parent 1f19487 commit c51b64c

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

.github/workflows/tests.yml

-3
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,10 @@ jobs:
6060
- "3.11"
6161
- "3.12"
6262
- "3.13"
63-
- "pypy-3.9"
6463
- "pypy-3.10"
6564
is_main:
6665
- ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
6766
exclude:
68-
- python: "pypy-3.9"
69-
is_main: false
7067
- python: "pypy-3.10"
7168
is_main: false
7269
steps:

tests/sync/test_connection.py

-4
Original file line numberDiff line numberDiff line change
@@ -564,10 +564,6 @@ def test_close_idempotency(self):
564564
self.connection.close()
565565
self.assertNoFrameSent()
566566

567-
@unittest.skipIf(
568-
platform.python_implementation() == "PyPy",
569-
"this test fails randomly due to a bug in PyPy", # see #1314 for details
570-
)
571567
def test_close_idempotency_race_condition(self):
572568
"""close waits if the connection is already closing."""
573569

0 commit comments

Comments
 (0)