[Python-checkins] bpo-33615: Skip test__xxsubinterpreters (GH-7503)

Victor Stinner webhook-mailer at python.org
Thu Jun 7 20:28:31 EDT 2018


https://github.com/python/cpython/commit/c4f3cb772bc2d93d91ee1750eed817262f3ed57d
commit: c4f3cb772bc2d93d91ee1750eed817262f3ed57d
branch: master
author: Victor Stinner <vstinner at redhat.com>
committer: GitHub <noreply at github.com>
date: 2018-06-08T02:28:28+02:00
summary:

bpo-33615: Skip test__xxsubinterpreters (GH-7503)

The test does crash on multiple CIs causing many troubles. For
example, the test prevents to get results of the two Refleak 3.x
buildbots.

files:
M Lib/test/test__xxsubinterpreters.py

diff --git a/Lib/test/test__xxsubinterpreters.py b/Lib/test/test__xxsubinterpreters.py
index f66cc9516926..b3ed27cd8040 100644
--- a/Lib/test/test__xxsubinterpreters.py
+++ b/Lib/test/test__xxsubinterpreters.py
@@ -12,6 +12,8 @@
 from test import support
 from test.support import script_helper
 
+raise unittest.SkipTest("FIXME: bpo-33615: test crash on some CIs")
+
 interpreters = support.import_module('_xxsubinterpreters')
 
 



More information about the Python-checkins mailing list