bpo-33615: Temporarily disable a test that is triggering crashes on a few buildbots. (gh-7288)

For bpo-32604 I added some subinterpreter-related tests (see #6914) that are causing crashes on a few buildbots. I'm working on fixing the crashes (see #7251).  This change temporarily disables the triggering test.
This commit is contained in:
Eric Snow 2018-05-31 10:17:24 -06:00 committed by GitHub
parent 58d1683255
commit 110bc01407
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1315,6 +1315,8 @@ class ChannelTests(TestBase):
self.assertEqual(obj, b'spam')
self.assertEqual(out.strip(), 'send')
# XXX Fix the crashes.
@unittest.skip('bpo-33615: triggering crashes so temporarily disabled')
def test_run_string_arg_resolved(self):
cid = interpreters.channel_create()
cid = interpreters._channel_id(cid, _resolve=True)