Skip to content

Commit 81f9339

Browse files
[3.13] gh-121832: Skip subinterpreter static type check on iOS to restore test suite. (GH-122150) (#122159)
gh-121832: Skip subinterpreter static type check on iOS to restore test suite. (GH-122150) (cherry picked from commit 1bcc9eb) Co-authored-by: Russell Keith-Magee <[email protected]>
1 parent 8567a5e commit 81f9339

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_types.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Python test set -- part 6, built-in types
22

3-
from test.support import run_with_locale, cpython_only, MISSING_C_DOCSTRINGS
3+
from test.support import run_with_locale, is_apple_mobile, cpython_only, MISSING_C_DOCSTRINGS
44
from test.test_import import no_rerun
55
import collections.abc
66
from collections import namedtuple, UserDict
@@ -2379,6 +2379,7 @@ def setUpClass(cls):
23792379
import test.support.interpreters.channels
23802380

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

0 commit comments

Comments
 (0)