aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_tests
diff options
context:
space:
mode:
authorGravatar Nathaniel Manista <nathaniel@google.com>2017-02-28 23:09:35 +0000
committerGravatar Nathaniel Manista <nathaniel@google.com>2017-02-28 23:09:35 +0000
commitfc39593a088627c8b8dbbde213ae2086900ec157 (patch)
tree59c10c596a7e03ac854e1e272e764df1fde83fc6 /src/python/grpcio_tests
parent16edd99975462719110c0203108f6b5f9aaeb669 (diff)
Add missing unittest.main call
This should have been included in 48226a2f1f14b555505e39c322141e74aed9.
Diffstat (limited to 'src/python/grpcio_tests')
-rw-r--r--src/python/grpcio_tests/tests/unit/_invocation_defects_test.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/python/grpcio_tests/tests/unit/_invocation_defects_test.py b/src/python/grpcio_tests/tests/unit/_invocation_defects_test.py
index f2e3898ed6..ee235032f0 100644
--- a/src/python/grpcio_tests/tests/unit/_invocation_defects_test.py
+++ b/src/python/grpcio_tests/tests/unit/_invocation_defects_test.py
@@ -249,3 +249,7 @@ class InvocationDefectsTest(unittest.TestCase):
with self.assertRaises(grpc.RpcError):
for _ in range(test_constants.STREAM_LENGTH // 2 + 1):
next(response_iterator)
+
+
+if __name__ == '__main__':
+ unittest.main(verbosity=2)