etcd3: skip ProcessPool based test

The other test is already skipped, but this one should also be skipped for the
same sad reason.

Change-Id: I101ef55dd3e83c0a30cc9dba12b224743071db34
This commit is contained in:
Julien Danjou 2017-06-26 14:28:07 +02:00
parent 1c6b3506fd
commit 965fb4dc4a
1 changed files with 6 additions and 0 deletions

View File

@ -812,6 +812,12 @@ class TestAPI(tests.TestWithCoordinator):
self.assertTrue(f.result())
def test_get_lock_concurrency_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_concurrency_locking_two_lock(
futures.ProcessPoolExecutor, False)