diff options
author | Russell Keith-Magee <russell@keith-magee.com> | 2024-07-23 10:17:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-23 10:17:50 (GMT) |
commit | 1bcc9eb8623c4e9bd8460f22b5ebae4e0cb434e4 (patch) | |
tree | ef8b3801cf76c22044638d61c817325b8eea210f | |
parent | 375c9f6dfb78345dd0966d6f3b281f15107b0561 (diff) | |
download | cpython-1bcc9eb8623c4e9bd8460f22b5ebae4e0cb434e4.zip cpython-1bcc9eb8623c4e9bd8460f22b5ebae4e0cb434e4.tar.gz cpython-1bcc9eb8623c4e9bd8460f22b5ebae4e0cb434e4.tar.bz2 |
gh-121832: Skip subinterpreter static type check on iOS to restore test suite. (GH-122150)
-rw-r--r-- | Lib/test/test_types.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_types.py b/Lib/test/test_types.py index 38a9882..b89380d 100644 --- a/Lib/test/test_types.py +++ b/Lib/test/test_types.py @@ -1,6 +1,6 @@ # Python test set -- part 6, built-in types -from test.support import run_with_locale, cpython_only, MISSING_C_DOCSTRINGS +from test.support import run_with_locale, is_apple_mobile, cpython_only, MISSING_C_DOCSTRINGS import collections.abc from collections import namedtuple, UserDict import copy @@ -2358,6 +2358,7 @@ class SubinterpreterTests(unittest.TestCase): import test.support.interpreters.channels @cpython_only + @unittest.skipIf(is_apple_mobile, "Fails on iOS due to test ordering; see #121832.") def test_slot_wrappers(self): rch, sch = interpreters.channels.create() |