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

This commit is contained in:
Russell Keith-Magee 2024-07-23 20:17:50 +10:00 committed by GitHub
parent 375c9f6dfb
commit 1bcc9eb862
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View 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()