bpo-32128: Skip test_nntplib.test_article_head_body() (GH-4552) (#4553)

The NNTP server currently has troubles with SSL, whereas we don't
have the control on this server. This test blocks all CIs, so disable
it until a fix can be found.
(cherry picked from commit 706cb3162e)
This commit is contained in:
Miss Islington (bot) 2017-11-24 18:02:47 -08:00 committed by Victor Stinner
parent 05ee12153f
commit dde38b9cb3

View file

@ -166,6 +166,7 @@ class NetworkedNNTPTestsMixin:
# XXX this could exceptionally happen... # XXX this could exceptionally happen...
self.assertNotIn(article.lines[-1], (b".", b".\n", b".\r\n")) self.assertNotIn(article.lines[-1], (b".", b".\n", b".\r\n"))
@unittest.skipIf(True, "FIXME: see bpo-32128")
def test_article_head_body(self): def test_article_head_body(self):
resp, count, first, last, name = self.server.group(self.GROUP_NAME) resp, count, first, last, name = self.server.group(self.GROUP_NAME)
# Try to find an available article # Try to find an available article