Skip to content

Commit ce5f577

Browse files
author
Jeffrey Wright
committed
Issue 434: rebase from master 2012-12-10.
1 parent 0d81ecf commit ce5f577

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.flake8

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[flake8]
2+
min-python-version = 3.8.0

src/pytest_html/basereport.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,9 @@ def pytest_runtest_logreport(self, report: TestReport) -> None:
267267
if self._config.getini("generate_report_on_test"):
268268
self._generate_report()
269269

270-
def _process_report(self, report: TestReport, duration: int) -> None:
270+
def _process_report(
271+
self, report: TestReport, duration: int, processed_extras: List
272+
) -> None:
271273
outcome = _process_outcome(report)
272274
try:
273275
# hook returns as list for some reason

0 commit comments

Comments
 (0)