Skip to content

Commit

Permalink
Change job groups in todo_only report into section headers
Browse files Browse the repository at this point in the history
Change job groups from list items to section headings according to https://progress.opensuse.org/issues/97403
  • Loading branch information
FruitFly638 committed Sep 13, 2021
1 parent 814dbcf commit a36b379
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openqa_review/openqa_review.py
Original file line number Diff line number Diff line change
Expand Up @@ -1464,7 +1464,7 @@ def __str__(self):
if not len(generated):
continue
report_str += (
"* %s:\n%s" % (k, generated) if self.args.todo_only else "# %s\n\n%s\n---\n" % (k, generated)
"### %s:\n%s" % (k, generated) if self.args.todo_only else "# %s\n\n%s\n---\n" % (k, generated)
)
return report_str

Expand Down
2 changes: 1 addition & 1 deletion tests/todo-only/report-todo-only.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
**TODO: review**

* 1:
### 1:
* **existing** [openqa_from_containers](https://openqa.opensuse.org/tests/1841487 "Failed modules: search") [(ref)](https://openqa.opensuse.org/tests/1840980 "Previous test")
* **existing** [openqa_from_git](https://openqa.opensuse.org/tests/1841489 "Failed modules: search") [(ref)](https://openqa.opensuse.org/tests/1840982 "Previous test")

0 comments on commit a36b379

Please sign in to comment.