diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2018-01-29 12:21:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-29 12:21:34 (GMT) |
commit | 51500f37453bbcbc5f1dbc3c38d079c3c1efe5de (patch) | |
tree | 579294d7b02b6857e611788af4f1024d38c02906 | |
parent | db8189bb8db609ca3993dec31fb95fdbe134469a (diff) | |
download | cpython-51500f37453bbcbc5f1dbc3c38d079c3c1efe5de.zip cpython-51500f37453bbcbc5f1dbc3c38d079c3c1efe5de.tar.gz cpython-51500f37453bbcbc5f1dbc3c38d079c3c1efe5de.tar.bz2 |
bpo-32706: Skip test_ftplib.test_check_hostname() (#5422)
This test is unstable and currently prevents to make any new change
since the test always fails on Travis CI.
Skip the test to get more time to fix it.
-rw-r--r-- | Lib/test/test_ftplib.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_ftplib.py b/Lib/test/test_ftplib.py index bb5a67f..32aab04 100644 --- a/Lib/test/test_ftplib.py +++ b/Lib/test/test_ftplib.py @@ -936,6 +936,7 @@ class TestTLS_FTPClass(TestCase): self.client.ccc() self.assertRaises(ValueError, self.client.sock.unwrap) + @skipUnless(False, "FIXME: bpo-32706") def test_check_hostname(self): self.client.quit() ctx = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT) |