mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
Mark flaky tests in test_ftplib
This commit is contained in:
2
Lib/test/test_ftplib.py
vendored
2
Lib/test/test_ftplib.py
vendored
@@ -971,6 +971,7 @@ class TestTLS_FTPClass(TestCase):
|
||||
LIST_DATA.encode(self.client.encoding))
|
||||
self.assertEqual(self.client.voidresp(), "226 transfer complete")
|
||||
|
||||
@unittest.skip('TODO: RUSTPYTHON flaky TimeoutError')
|
||||
def test_login(self):
|
||||
# login() is supposed to implicitly secure the control connection
|
||||
self.assertNotIsInstance(self.client.sock, ssl.SSLSocket)
|
||||
@@ -983,6 +984,7 @@ class TestTLS_FTPClass(TestCase):
|
||||
self.client.auth()
|
||||
self.assertRaises(ValueError, self.client.auth)
|
||||
|
||||
@unittest.skip('TODO: RUSTPYTHON flaky TimeoutError')
|
||||
def test_context(self):
|
||||
self.client.quit()
|
||||
ctx = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
|
||||
|
||||
Reference in New Issue
Block a user