Skip to content

Commit 2d2528c

Browse files
Ark-kuncopybara-github
authored andcommitted
chore: Make the test names visible during testing
PiperOrigin-RevId: 504455121
1 parent d0de729 commit 2d2528c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

noxfile.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,8 @@ def default(session):
170170
# Run py.test against the unit tests.
171171
session.run(
172172
"py.test",
173-
"--quiet",
173+
# There are 11000+ GAPIC unit tests which causes the log to be cut off.
174+
# "--verbose",
174175
f"--junitxml=unit_{session.python}_sponge_log.xml",
175176
"--cov=google",
176177
"--cov-append",
@@ -247,15 +248,15 @@ def system(session):
247248
if system_test_exists:
248249
session.run(
249250
"py.test",
250-
"--quiet",
251+
"--verbose",
251252
f"--junitxml=system_{session.python}_sponge_log.xml",
252253
system_test_path,
253254
*session.posargs,
254255
)
255256
if system_test_folder_exists:
256257
session.run(
257258
"py.test",
258-
"--quiet",
259+
"--verbose",
259260
f"--junitxml=system_{session.python}_sponge_log.xml",
260261
system_test_folder_path,
261262
*session.posargs,

0 commit comments

Comments
 (0)