fix formatting to be linter friendly

This commit is contained in:
Hardik Shah 2025-01-22 15:25:43 -08:00
parent c0f4fe0670
commit eab284c0f7

View file

@ -167,7 +167,8 @@ class Report:
report.extend(test_table)
output_file = self.output_path
output_file.write_text("\n".join(report))
text = "\n".join(report) + "\n"
output_file.write_text(text)
cprint(f"\nReport generated: {output_file.absolute()}", "green")
def pytest_runtest_makereport(self, item, call):