https://github.com/python/cpython/commit/41a91bd67f86c922f350894a797738038536e1c5
commit: 41a91bd67f86c922f350894a797738038536e1c5
branch: main
author: Eric Snow <[email protected]>
committer: ericsnowcurrently <[email protected]>
date: 2024-07-23T21:19:17Z
summary:

gh-122199: Skip test_slot_wrappers When Checking For Refleaks (gh-122200)

files:
M Lib/test/test_types.py

diff --git a/Lib/test/test_types.py b/Lib/test/test_types.py
index fb88daf9742fa9..a87bb275d296a0 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 @@ def setUpClass(cls):
         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()

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to