projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
db8189b
)
bpo-32706: Skip test_ftplib.test_check_hostname() (#5422)
author
Victor Stinner
<victor.stinner@gmail.com>
Mon, 29 Jan 2018 12:21:34 +0000
(13:21 +0100)
committer
GitHub
<noreply@github.com>
Mon, 29 Jan 2018 12:21:34 +0000
(13:21 +0100)
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.
Lib/test/test_ftplib.py
patch
|
blob
|
history
diff --git
a/Lib/test/test_ftplib.py
b/Lib/test/test_ftplib.py
index bb5a67f27e31f64935825c52c499417879c50780..32aab047df8579010ef40381069e88cf95d5068c 100644
(file)
--- 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)