Merge pull request #18129 from ericgribkoff/abort_test_test

Disable test_abort_does_not_leak_local_vars
pull/18143/head
Eric Gribkoff 6 years ago committed by GitHub
commit d6e8c4fdb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      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)

Loading…
Cancel
Save