Skip to content

Commit 9d9ea48

Browse files
freakboy3742miss-islington
authored andcommitted
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 48154e7 commit 9d9ea48

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_types.py

Lines changed: 2 additions & 1 deletion
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
import collections.abc
55
from collections import namedtuple, UserDict
66
import copy
@@ -2358,6 +2358,7 @@ def setUpClass(cls):
23582358
import test.support.interpreters.channels
23592359

23602360
@cpython_only
2361+
@unittest.skipIf(is_apple_mobile, "Fails on iOS due to test ordering; see #121832.")
23612362
def test_slot_wrappers(self):
23622363
rch, sch = interpreters.channels.create()
23632364

0 commit comments

Comments
 (0)