From 496fff1e50519ad6fa8d64e311e37d05e0339997 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 8 Jun 2018 02:16:01 +0200 Subject: [PATCH] bpo-33615: Skip test__xxsubinterpreters The test does crash on multiple CIs causing many troubles. For example, the test prevents to get results of the two Refleak 3.x buildbot. --- 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 f66cc95169260d..b3ed27cd8040cd 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')