瀏覽代碼

Merge pull request #18129 from ericgribkoff/abort_test_test

Disable test_abort_does_not_leak_local_vars
Eric Gribkoff 6 年之前
父節點
當前提交
d6e8c4fdb1
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/python/grpcio_tests/tests/unit/_abort_test.py

+ 1 - 0
src/python/grpcio_tests/tests/unit/_abort_test.py

@@ -115,6 +115,7 @@ class AbortTest(unittest.TestCase):
     # on Python 3 (via the `__traceback__` attribute) holds a reference to
     # all local vars. Storing the raised exception can prevent GC and stop the
     # grpc_call from being unref'ed, even after server shutdown.
+    @unittest.skip("https://github.com/grpc/grpc/issues/17927")
     def test_abort_does_not_leak_local_vars(self):
         global do_not_leak_me  # pylint: disable=global-statement
         weak_ref = weakref.ref(do_not_leak_me)