[Python-checkins] bpo-32128: Skip test_nntplib.test_article_head_body() (GH-4552) (#4553)

Victor Stinner webhook-mailer at python.org
Fri Nov 24 21:02:49 EST 2017


https://github.com/python/cpython/commit/dde38b9cb3ff24f2f1f17cb681d30741e0090f51
commit: dde38b9cb3ff24f2f1f17cb681d30741e0090f51
branch: 3.6
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: Victor Stinner <victor.stinner at gmail.com>
date: 2017-11-25T03:02:47+01:00
summary:

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 706cb3162e15271ecfeba15909ed48a3a437009f)

files:
M Lib/test/test_nntplib.py

diff --git a/Lib/test/test_nntplib.py b/Lib/test/test_nntplib.py
index 3e84f3429ee..d7642bc66ab 100644
--- a/Lib/test/test_nntplib.py
+++ b/Lib/test/test_nntplib.py
@@ -166,6 +166,7 @@ def check_article_resp(self, resp, article, art_num=None):
         # XXX this could exceptionally happen...
         self.assertNotIn(article.lines[-1], (b".", b".\n", b".\r\n"))
 
+    @unittest.skipIf(True, "FIXME: see bpo-32128")
     def test_article_head_body(self):
         resp, count, first, last, name = self.server.group(self.GROUP_NAME)
         # Try to find an available article



More information about the Python-checkins mailing list