From: Victor Stinner Date: Fri, 8 Jun 2018 00:28:28 +0000 (+0200) Subject: bpo-33615: Skip test__xxsubinterpreters (GH-7503) X-Git-Tag: v3.8.0a1~1634 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c4f3cb772bc2d93d91ee1750eed817262f3ed57d;p=thirdparty%2FPython%2Fcpython.git 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. --- 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 @@ import unittest 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')