[Aio] Skip TestWaitForReady on Windows (#26729)

* Mark TestWaitForReady as flaky

* Skip wait for ready test on Windows

* Bazel is not currently used for testing on Windows
pull/27791/head
Lidi Zheng 4 years ago committed by GitHub
parent 0c2a678a6a
commit ab00c88a41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      src/python/grpcio_tests/tests_aio/unit/wait_for_ready_test.py

@ -18,6 +18,7 @@ import logging
import unittest
import time
import gc
import platform
import grpc
from grpc.experimental import aio
@ -119,6 +120,8 @@ class TestWaitForReady(AioTestBase):
"""RPC should fail immediately after connection failed."""
await self._connection_fails_fast(False)
@unittest.skipIf(platform.system() == 'Windows',
'https://github.com/grpc/grpc/pull/26729')
async def test_call_wait_for_ready_enabled(self):
"""RPC will wait until the connection is ready."""
for action in _RPC_ACTIONS:

Loading…
Cancel
Save