diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-11-25 02:02:47 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-11-25 02:02:47 (GMT) |
commit | dde38b9cb3ff24f2f1f17cb681d30741e0090f51 (patch) | |
tree | a79569f58210af499d52cb3cf566da3bbf81931b /Lib | |
parent | 05ee12153f51d78cc5160d59a01cad7b805f47a0 (diff) | |
download | cpython-dde38b9cb3ff24f2f1f17cb681d30741e0090f51.zip cpython-dde38b9cb3ff24f2f1f17cb681d30741e0090f51.tar.gz cpython-dde38b9cb3ff24f2f1f17cb681d30741e0090f51.tar.bz2 |
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)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_nntplib.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_nntplib.py b/Lib/test/test_nntplib.py index 3e84f34..d7642bc 100644 --- a/Lib/test/test_nntplib.py +++ b/Lib/test/test_nntplib.py @@ -166,6 +166,7 @@ class NetworkedNNTPTestsMixin: # 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 |