Skip to content
Snippets Groups Projects
Commit d9c0d498 authored by Lidi Zheng's avatar Lidi Zheng
Browse files

Stop the failing tests

parent 65233f78
No related branches found
No related tags found
No related merge requests found
...@@ -160,7 +160,10 @@ class TestGevent(setuptools.Command): ...@@ -160,7 +160,10 @@ class TestGevent(setuptools.Command):
) )
BANNED_WINDOWS_TESTS = ( BANNED_WINDOWS_TESTS = (
# TODO(https://github.com/grpc/grpc/pull/15411) enable this test # TODO(https://github.com/grpc/grpc/pull/15411) enable this test
'unit._dns_resolver_test.DNSResolverTest.test_connect_loopback',) 'unit._dns_resolver_test.DNSResolverTest.test_connect_loopback',
# TODO(https://github.com/grpc/grpc/issues/20078) enable this test
'unit._local_credentials_test.LocalCredentialsTest',
)
description = 'run tests with gevent. Assumes grpc/gevent are installed' description = 'run tests with gevent. Assumes grpc/gevent are installed'
user_options = [] user_options = []
......
...@@ -49,6 +49,8 @@ class LocalCredentialsTest(unittest.TestCase): ...@@ -49,6 +49,8 @@ class LocalCredentialsTest(unittest.TestCase):
b'abc', wait_for_ready=True)) b'abc', wait_for_ready=True))
server.stop(None) server.stop(None)
@unittest.skipIf(os.name == 'nt',
'Unix Domain Socket is not supported on Windows')
def test_uds(self): def test_uds(self):
server_addr = 'unix:/tmp/grpc_fullstack_test' server_addr = 'unix:/tmp/grpc_fullstack_test'
channel_creds = grpc.local_channel_credentials( channel_creds = grpc.local_channel_credentials(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment