Skip to content

Commit

Permalink
pythongh-121832: Skip subinterpreter static type check on iOS to rest…
Browse files Browse the repository at this point in the history
…ore test suite. (pythonGH-122150)
  • Loading branch information
freakboy3742 committed Jul 23, 2024
1 parent 375c9f6 commit 1bcc9eb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Lib/test/test_types.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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()

Expand Down

0 comments on commit 1bcc9eb

Please sign in to comment.