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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c4f3cb772bc2d93d91ee1750eed817262f3ed57d;p=python 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 f66cc95169..b3ed27cd80 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')