File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,8 @@ def default(session):
170
170
# Run py.test against the unit tests.
171
171
session .run (
172
172
"py.test" ,
173
- "--quiet" ,
173
+ # There are 11000+ GAPIC unit tests which causes the log to be cut off.
174
+ # "--verbose",
174
175
f"--junitxml=unit_{ session .python } _sponge_log.xml" ,
175
176
"--cov=google" ,
176
177
"--cov-append" ,
@@ -247,15 +248,15 @@ def system(session):
247
248
if system_test_exists :
248
249
session .run (
249
250
"py.test" ,
250
- "--quiet " ,
251
+ "--verbose " ,
251
252
f"--junitxml=system_{ session .python } _sponge_log.xml" ,
252
253
system_test_path ,
253
254
* session .posargs ,
254
255
)
255
256
if system_test_folder_exists :
256
257
session .run (
257
258
"py.test" ,
258
- "--quiet " ,
259
+ "--verbose " ,
259
260
f"--junitxml=system_{ session .python } _sponge_log.xml" ,
260
261
system_test_folder_path ,
261
262
* session .posargs ,
You can’t perform that action at this time.
0 commit comments