commit | 4b290e9ee35bf5fb6334312e4da12fdb4b673445 | [log] [tgz] |
---|---|---|
author | Nathaniel Manista <nathaniel@google.com> | Wed Mar 01 09:18:12 2017 -0800 |
committer | GitHub <noreply@github.com> | Wed Mar 01 09:18:12 2017 -0800 |
tree | b792982c0c56624e4bb25967028b0e637942eddb | |
parent | 823e87b1d99097b439763f64e101655e7cf8acc8 [diff] | |
parent | fc39593a088627c8b8dbbde213ae2086900ec157 [diff] |
Merge pull request #9917 from nathanielmanistaatgoogle/missing-main Add missing unittest.main call.
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 f2e3898..ee23503 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 @@ with self.assertRaises(grpc.RpcError): for _ in range(test_constants.STREAM_LENGTH // 2 + 1): next(response_iterator) + + +if __name__ == '__main__': + unittest.main(verbosity=2)