Kaydet (Commit) b82c915f authored tarafından Christian Heimes's avatar Christian Heimes

Skip new SSL tests with IocpEventLoop

üst aa15276e
...@@ -1398,6 +1398,15 @@ if sys.platform == 'win32': ...@@ -1398,6 +1398,15 @@ if sys.platform == 'win32':
def test_create_server_ssl(self): def test_create_server_ssl(self):
raise unittest.SkipTest("IocpEventLoop imcompatible with SSL") raise unittest.SkipTest("IocpEventLoop imcompatible with SSL")
def test_create_server_ssl_verify_failed(self):
raise unittest.SkipTest("IocpEventLoop imcompatible with SSL")
def test_create_server_ssl_match_failed(self):
raise unittest.SkipTest("IocpEventLoop imcompatible with SSL")
def test_create_server_ssl_verified(self):
raise unittest.SkipTest("IocpEventLoop imcompatible with SSL")
def test_reader_callback(self): def test_reader_callback(self):
raise unittest.SkipTest("IocpEventLoop does not have add_reader()") raise unittest.SkipTest("IocpEventLoop does not have add_reader()")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment