From fc39593a088627c8b8dbbde213ae2086900ec157 Mon Sep 17 00:00:00 2001 From: Nathaniel Manista Date: Tue, 28 Feb 2017 23:09:35 +0000 Subject: Add missing unittest.main call This should have been included in 48226a2f1f14b555505e39c322141e74aed9. --- src/python/grpcio_tests/tests/unit/_invocation_defects_test.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') 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) -- cgit v1.2.3