Skip to content

Commit

Permalink
Merge pull request #178 from FruitFly638/master
Browse files Browse the repository at this point in the history
Change job groups in todo_only report into section headers
  • Loading branch information
okurz committed Sep 13, 2021
2 parents 814dbcf + a36b379 commit 2e49989
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 2e49989

Please sign in to comment.