Skip to content

Total time duration changed from seconds to minutes #607

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion src/pytest_html/html_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ def _generate_report(self, session):
outcomes.append(Outcome("rerun", self.rerun))

summary = [
html.p(f"{numtests} tests ran in {suite_time_delta:.2f} seconds. "),
html.p(
f"{numtests} tests ran in {self.__time_converter(suite_time_delta)} minutes. "
),
html.p(
"(Un)check the boxes to filter the results.",
class_="filter",
Expand Down Expand Up @@ -334,3 +336,10 @@ def pytest_sessionfinish(self, session):

def pytest_terminal_summary(self, terminalreporter):
terminalreporter.write_sep("-", f"generated html file: {self.logfile.as_uri()}")

def __time_converter(self, suite_time_delta):
# Calculate the total time duration in seconds
hours = suite_time_delta // (60 * 60)
minutes = suite_time_delta // 60
seconds = suite_time_delta % 60
return f"{round(hours)}:{round(minutes)}:{round(seconds, 2)}"