File tree 2 files changed +0
-8
lines changed
2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -60,13 +60,10 @@ jobs:
60
60
- " 3.11"
61
61
- " 3.12"
62
62
- " 3.13"
63
- - " pypy-3.9"
64
63
- " pypy-3.10"
65
64
is_main :
66
65
- ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
67
66
exclude :
68
- - python : " pypy-3.9"
69
- is_main : false
70
67
- python : " pypy-3.10"
71
68
is_main : false
72
69
steps :
Original file line number Diff line number Diff line change 1
1
import contextlib
2
2
import logging
3
- import platform
4
3
import socket
5
4
import sys
6
5
import threading
@@ -564,10 +563,6 @@ def test_close_idempotency(self):
564
563
self .connection .close ()
565
564
self .assertNoFrameSent ()
566
565
567
- @unittest .skipIf (
568
- platform .python_implementation () == "PyPy" ,
569
- "this test fails randomly due to a bug in PyPy" , # see #1314 for details
570
- )
571
566
def test_close_idempotency_race_condition (self ):
572
567
"""close waits if the connection is already closing."""
573
568
You can’t perform that action at this time.
0 commit comments