From c4f3cb772bc2d93d91ee1750eed817262f3ed57d Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 8 Jun 2018 02:28:28 +0200 Subject: 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. --- Lib/test/test__xxsubinterpreters.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/test/test__xxsubinterpreters.py b/Lib/test/test__xxsubinterpreters.py index f66cc95..b3ed27c 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') -- cgit v0.12