]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-121832: Skip subinterpreter static type check on iOS to restore test suite. (GH...
authorRussell Keith-Magee <russell@keith-magee.com>
Tue, 23 Jul 2024 10:17:50 +0000 (20:17 +1000)
committerGitHub <noreply@github.com>
Tue, 23 Jul 2024 10:17:50 +0000 (11:17 +0100)
Lib/test/test_types.py

index 38a98828085e2f96b6f16a1bee313470e0e9db95..b89380da57884e59cc2817c3a79d25d59cc833a3 100644 (file)
@@ -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()