diff --git a/tooz/tests/test_coordination.py b/tooz/tests/test_coordination.py index 611aa89c..479ed573 100644 --- a/tooz/tests/test_coordination.py +++ b/tooz/tests/test_coordination.py @@ -816,6 +816,12 @@ class TestAPI(tests.TestWithCoordinator): futures.ProcessPoolExecutor, False) def test_get_lock_serial_locking_two_lock_process(self): + # NOTE(jd) Using gRPC and forking is not supported so this test might + # very likely hang forever or crash. See + # https://github.com/grpc/grpc/issues/10140#issuecomment-297548714 for + # more info. + if self.url.startswith("etcd3://"): + self.skipTest("Unable to use etcd3 with fork()") self._do_test_get_lock_serial_locking_two_lock( futures.ProcessPoolExecutor, False)