diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2024-07-23 21:19:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-23 21:19:17 (GMT) |
commit | 41a91bd67f86c922f350894a797738038536e1c5 (patch) | |
tree | 4aac4a6eaba82761ebf8c947bee4e7c7dbe28a44 | |
parent | 7b7b90d1ce5116f29ad6c8120c0490824baa54e0 (diff) | |
download | cpython-41a91bd67f86c922f350894a797738038536e1c5.zip cpython-41a91bd67f86c922f350894a797738038536e1c5.tar.gz cpython-41a91bd67f86c922f350894a797738038536e1c5.tar.bz2 |
gh-122199: Skip test_slot_wrappers When Checking For Refleaks (gh-122200)
-rw-r--r-- | Lib/test/test_types.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/test/test_types.py b/Lib/test/test_types.py index fb88daf..a87bb27 100644 --- a/Lib/test/test_types.py +++ b/Lib/test/test_types.py @@ -1,6 +1,9 @@ # Python test set -- part 6, built-in types -from test.support import run_with_locale, is_apple_mobile, cpython_only, MISSING_C_DOCSTRINGS +from test.support import ( + run_with_locale, is_apple_mobile, cpython_only, no_rerun, + MISSING_C_DOCSTRINGS, +) import collections.abc from collections import namedtuple, UserDict import copy @@ -2378,6 +2381,7 @@ class SubinterpreterTests(unittest.TestCase): import test.support.interpreters.channels @cpython_only + @no_rerun('channels (and queues) might have a refleak; see gh-122199') @unittest.skipIf(is_apple_mobile, "Fails on iOS due to test ordering; see #121832.") def test_slot_wrappers(self): rch, sch = interpreters.channels.create() |