mirror of
https://github.com/python/cpython.git
synced 2025-08-30 05:35:08 +00:00
[3.13] gh-121832: Skip subinterpreter static type check on iOS to restore test suite. (GH-122150) (#122159)
gh-121832: Skip subinterpreter static type check on iOS to restore test suite. (GH-122150)
(cherry picked from commit 1bcc9eb862
)
Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
This commit is contained in:
parent
8567a5e97d
commit
81f9339022
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
from test.test_import import no_rerun
|
||||
import collections.abc
|
||||
from collections import namedtuple, UserDict
|
||||
|
@ -2379,6 +2379,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.")
|
||||
@no_rerun('channels (and queues) might have a refleak; see gh-122199')
|
||||
def test_slot_wrappers(self):
|
||||
rch, sch = interpreters.channels.create()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue