https://github.com/python/cpython/commit/1bcc9eb8623c4e9bd8460f22b5ebae4e0cb434e4
commit: 1bcc9eb8623c4e9bd8460f22b5ebae4e0cb434e4
branch: main
author: Russell Keith-Magee <[email protected]>
committer: markshannon <[email protected]>
date: 2024-07-23T11:17:50+01:00
summary:

gh-121832: Skip subinterpreter static type check on iOS to restore test suite. 
(GH-122150)

files:
M Lib/test/test_types.py

diff --git a/Lib/test/test_types.py b/Lib/test/test_types.py
index 38a98828085e2f..b89380da57884e 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 @@ def setUpClass(cls):
         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()
 

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to