mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-06 10:42:39 +00:00
fix formatting to be linter friendly
This commit is contained in:
parent
c0f4fe0670
commit
eab284c0f7
1 changed files with 5 additions and 4 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue