diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-11-25 01:42:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-25 01:42:18 (GMT) |
commit | 706cb3162e15271ecfeba15909ed48a3a437009f (patch) | |
tree | 21c0ddf926f6ba69ef307b450ebc7b348dde0863 /Lib | |
parent | f8802d80b32dbc64f9e0e72270695d24ac50e246 (diff) | |
download | cpython-706cb3162e15271ecfeba15909ed48a3a437009f.zip cpython-706cb3162e15271ecfeba15909ed48a3a437009f.tar.gz cpython-706cb3162e15271ecfeba15909ed48a3a437009f.tar.bz2 |
bpo-32128: Skip test_nntplib.test_article_head_body() (#4552)
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.
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 bb780bf..8c1032b 100644 --- a/Lib/test/test_nntplib.py +++ b/Lib/test/test_nntplib.py @@ -165,6 +165,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 |