Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading