File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ def default(session, install_grpc=True):
111
111
"--cov=tests.unit" ,
112
112
"--cov-append" ,
113
113
"--cov-config=.coveragerc" ,
114
- "--cov-report=" ,
114
+ "--cov-report=html " ,
115
115
"--cov-fail-under=0" ,
116
116
# Running individual tests with parallelism enabled is usually not helpful.
117
117
"-n=auto" ,
Original file line number Diff line number Diff line change @@ -813,7 +813,7 @@ def test_rpc_callback_fires_when_consumer_start_fails(self):
813
813
bidi_rpc .add_done_callback (callback )
814
814
bidi_rpc ._start_rpc .side_effect = expected_exception
815
815
816
- consumer = bidi .BackgroundConsumer (bidi_rpc , on_response = lambda : None )
816
+ consumer = bidi .BackgroundConsumer (bidi_rpc , on_response = None )
817
817
consumer .start ()
818
818
assert callback .call_args .args [0 ] == expected_exception
819
819
You can’t perform that action at this time.
0 commit comments