Skip to content

Commit 44f0569

Browse files
committed
lint
1 parent 3783956 commit 44f0569

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

modules/testrail_scripts/testrail_status_analyses.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -281,30 +281,30 @@ def print_numerical_summary(project_stats):
281281
report.info("NUMERICAL SUMMARY - TOTAL COUNTS")
282282
report.info(f"{'=' * 80}")
283283

284-
report.info(f"\n OVERALL TOTALS:")
284+
report.info("\n OVERALL TOTALS:")
285285
report.info(f" Total Suites: {project_stats['total_suites']}")
286286
report.info(f" Total Test Cases: {project_stats['total_cases']}")
287287

288288
if project_stats["total_cases"] == 0:
289289
return
290290

291-
report.info(f"\n SUB TEST SUITE TOTALS:")
291+
report.info("\n SUB TEST SUITE TOTALS:")
292292
total_by_sub_suite = sorted(
293293
project_stats["by_sub_test_suite"].items(), key=lambda x: x[1], reverse=True
294294
)
295295
for sub_suite, count in total_by_sub_suite:
296296
percentage = (count / project_stats["total_cases"]) * 100
297297
report.info(f" {sub_suite:30}: {count:6} cases ({percentage:5.1f}%)")
298298

299-
report.info(f"\n AUTOMATION STATUS TOTALS:")
299+
report.info("\n AUTOMATION STATUS TOTALS:")
300300
total_by_status = sorted(
301301
project_stats["by_automation_status"].items(), key=lambda x: x[1], reverse=True
302302
)
303303
for status, count in total_by_status:
304304
percentage = (count / project_stats["total_cases"]) * 100
305305
report.info(f" {status:20}: {count:6} cases ({percentage:5.1f}%)")
306306

307-
report.info(f"\n AUTOMATION COVERAGE TOTALS:")
307+
report.info("\n AUTOMATION COVERAGE TOTALS:")
308308
total_by_coverage = sorted(
309309
project_stats["by_automation_coverage"].items(),
310310
key=lambda x: x[1],
@@ -434,7 +434,7 @@ def main():
434434
report.info(f"{'=' * 80}")
435435
report.info(f" Analyzed {project_stats['total_suites']} suites")
436436
report.info(f" Processed {project_stats['total_cases']} test cases")
437-
report.info(f" Generated detailed statistics and breakdowns")
437+
report.info(" Generated detailed statistics and breakdowns")
438438
else:
439439
op_log.error(" Analysis failed!")
440440

tests/bookmarks_and_history/test_open_bookmark_in_private_window_via_toolbar_context_menu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import pytest
22
from selenium.webdriver import Firefox
33

4-
from modules.browser_object import ContextMenu, Navigation, PanelUi, TabBar
4+
from modules.browser_object import Navigation, TabBar
55
from modules.page_object_generics import GenericPage
66

77

0 commit comments

Comments
 (0)