some reformatting and striking overall

This commit is contained in:
holger krekel
2023-10-20 11:03:02 +02:00
parent 03442bc115
commit 3012bfb79d
2 changed files with 1 additions and 3 deletions

View File

@@ -30,7 +30,6 @@ def test_login_smtp(benchmark, smtp, gencreds):
class TestDC:
def test_autoconfigure(self, benchmark, cmfactory):
def autoconfig_and_idle_ready():
cmfactory.get_online_accounts(1)

View File

@@ -83,9 +83,8 @@ def pytest_terminal_summary(terminalreporter):
tr.write_line(headers)
tr.write_line("-" * len(headers))
for name, durations in results.items():
overall = sum(durations)
median = sorted(durations)[len(durations) // 2]
median = f'{median:2.4f}'
median = f"{median:2.4f}"
tr.write_line(f"{name: <30} {median: >6}")