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):
111111 "--cov=tests.unit" ,
112112 "--cov-append" ,
113113 "--cov-config=.coveragerc" ,
114- "--cov-report=" ,
114+ "--cov-report=html " ,
115115 "--cov-fail-under=0" ,
116116 # Running individual tests with parallelism enabled is usually not helpful.
117117 "-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):
813813 bidi_rpc .add_done_callback (callback )
814814 bidi_rpc ._start_rpc .side_effect = expected_exception
815815
816- consumer = bidi .BackgroundConsumer (bidi_rpc , on_response = lambda : None )
816+ consumer = bidi .BackgroundConsumer (bidi_rpc , on_response = None )
817817 consumer .start ()
818818 assert callback .call_args .args [0 ] == expected_exception
819819
You can’t perform that action at this time.
0 commit comments