mirror of
https://github.com/python/cpython.git
synced 2025-10-06 23:21:06 +00:00
* bpo-30175: Skip client cert tests of test_imaplib
The IMAP server cyrus.andrew.cmu.edu doesn't accept our randomly
generated client x509 certificate anymore.
* bpo-30188: Catch EOFError in NetworkedNNTPTests
test_nntplib fails randomly with EOFError in
NetworkedNNTPTests.setUpClass(). Catch EOFError to skip tests in that
case.
(cherry picked from commit 5bccca58b9
)
This commit is contained in:
parent
33a5568f69
commit
4dc3b9cf2a
2 changed files with 12 additions and 1 deletions
|
@ -966,6 +966,9 @@ class RemoteIMAP_SSLTest(RemoteIMAPTest):
|
|||
_server = self.imap_class(self.host, self.port)
|
||||
self.check_logincapa(_server)
|
||||
|
||||
@unittest.skipIf(True,
|
||||
"bpo-30175: FIXME: cyrus.andrew.cmu.edu doesn't accept "
|
||||
"our randomly generated client x509 certificate anymore")
|
||||
def test_logincapa_with_client_certfile(self):
|
||||
with transient_internet(self.host):
|
||||
with support.check_warnings(('', DeprecationWarning)):
|
||||
|
@ -973,6 +976,9 @@ class RemoteIMAP_SSLTest(RemoteIMAPTest):
|
|||
certfile=CERTFILE)
|
||||
self.check_logincapa(_server)
|
||||
|
||||
@unittest.skipIf(True,
|
||||
"bpo-30175: FIXME: cyrus.andrew.cmu.edu doesn't accept "
|
||||
"our randomly generated client x509 certificate anymore")
|
||||
def test_logincapa_with_client_ssl_context(self):
|
||||
with transient_internet(self.host):
|
||||
_server = self.imap_class(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue