[Python-checkins] [3.12] gh-105699: Disable the Interpreters Stress Tests (gh-107354) (gh-107357)

ericsnowcurrently webhook-mailer at python.org
Thu Jul 27 16:09:10 EDT 2023


https://github.com/python/cpython/commit/c580527d9230212e8f8d697a18b86120109aa653
commit: c580527d9230212e8f8d697a18b86120109aa653
branch: 3.12
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: ericsnowcurrently <ericsnowcurrently at gmail.com>
date: 2023-07-27T20:09:05Z
summary:

[3.12] gh-105699: Disable the Interpreters Stress Tests (gh-107354) (gh-107357)

gh-105699: Disable the Interpreters Stress Tests (gh-107354)

The two tests are crashing periodically in CI and on buildbots.  I suspect the problem is in the _xxsubinterpreters module.
 Regardless, I'm disabling the tests temporarily, to reduce the noise as we approach 3.12rc1.  I'll be investigating the crashes separately.
(cherry picked from commit 4f67921ad28194155e3d4c16255fb140a6a4d89a)

Co-authored-by: Eric Snow <ericsnowcurrently at gmail.com>

files:
M Lib/test/test_interpreters.py

diff --git a/Lib/test/test_interpreters.py b/Lib/test/test_interpreters.py
index 5981d96de8de0..662eafa3b7a10 100644
--- a/Lib/test/test_interpreters.py
+++ b/Lib/test/test_interpreters.py
@@ -464,6 +464,7 @@ def test_bytes_for_script(self):
     # test_xxsubinterpreters covers the remaining Interpreter.run() behavior.
 
 
+ at unittest.skip('these are crashing, likely just due just to _xxsubinterpreters (see gh-105699)')
 class StressTests(TestBase):
 
     # In these tests we generally want a lot of interpreters,



More information about the Python-checkins mailing list