Commit d2389867 authored by Jason Madden's avatar Jason Madden

Skip test_assertion_in_blocking_func on appveyor.

parent 01e8f114
...@@ -1291,6 +1291,7 @@ if OSX: ...@@ -1291,6 +1291,7 @@ if OSX:
# These sometime timeout. Cannot reproduce locally. # These sometime timeout. Cannot reproduce locally.
'test_ftp.TestTLS_FTPClassMixin.test_mlsd', 'test_ftp.TestTLS_FTPClassMixin.test_mlsd',
'test_ftp.TestTLS_FTPClassMixin.test_retrlines_too_long', 'test_ftp.TestTLS_FTPClassMixin.test_retrlines_too_long',
'test_ftp.TestTLS_FTPClassMixin.test_storlines',
] ]
if RESOLVER_ARES and PY38 and not RUNNING_ON_CI: if RESOLVER_ARES and PY38 and not RUNNING_ON_CI:
......
...@@ -469,6 +469,7 @@ class TestNoneSpawn(TestCase): ...@@ -469,6 +469,7 @@ class TestNoneSpawn(TestCase):
def test_invalid_callback(self): def test_invalid_callback(self):
self._test_invalid_callback() self._test_invalid_callback()
@greentest.skipOnAppVeyor("Sometimes doesn't get the error.")
def test_assertion_in_blocking_func(self): def test_assertion_in_blocking_func(self):
def sleep(*_args): def sleep(*_args):
gevent.sleep(SMALLEST_RELIABLE_DELAY) gevent.sleep(SMALLEST_RELIABLE_DELAY)
...@@ -507,7 +508,7 @@ class BadWrapException(BaseException): ...@@ -507,7 +508,7 @@ class BadWrapException(BaseException):
class TestSSLGetCertificate(TestCase): class TestSSLGetCertificate(TestCase):
def _create_server(self): def _create_server(self): # pylint:disable=arguments-differ
return self.ServerSubClass((greentest.DEFAULT_BIND_ADDR, 0), return self.ServerSubClass((greentest.DEFAULT_BIND_ADDR, 0),
keyfile=_file('server.key'), keyfile=_file('server.key'),
certfile=_file('server.crt')) certfile=_file('server.crt'))
......
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