Skip to content

Commit 1e298b7

Browse files
Suppress the parallel report summary in quiet mode
1 parent fb91bf6 commit 1e298b7

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/pytest_run_parallel/plugin.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,9 @@ def pytest_terminal_summary(self, terminalreporter, exitstatus, config):
354354
if not enabled:
355355
return
356356

357+
if config.option.verbose < 0:
358+
return
359+
357360
terminalreporter.section("pytest-run-parallel report", "*")
358361

359362
if self.verbose and self.thread_unsafe:

0 commit comments

Comments
 (0)