Skip to content

Commit

Permalink
pythongh-122199: Skip test_slot_wrappers When Checking For Refleaks (p…
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsnowcurrently authored and nohlson committed Jul 24, 2024
1 parent 513dd5d commit f3210d3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Lib/test/test_types.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Python test set -- part 6, built-in types

from test.support import run_with_locale, is_apple_mobile, cpython_only, MISSING_C_DOCSTRINGS
from test.support import (
run_with_locale, is_apple_mobile, cpython_only, no_rerun,
MISSING_C_DOCSTRINGS,
)
import collections.abc
from collections import namedtuple, UserDict
import copy
Expand Down Expand Up @@ -2378,6 +2381,7 @@ def setUpClass(cls):
import test.support.interpreters.channels

@cpython_only
@no_rerun('channels (and queues) might have a refleak; see gh-122199')
@unittest.skipIf(is_apple_mobile, "Fails on iOS due to test ordering; see #121832.")
def test_slot_wrappers(self):
rch, sch = interpreters.channels.create()
Expand Down

0 comments on commit f3210d3

Please sign in to comment.