Skip to content

Commit

Permalink
Merge pull request #179 from FruitFly638/master
Browse files Browse the repository at this point in the history
Add line break after each job group to clean up formatting
  • Loading branch information
okurz authored Sep 14, 2021
2 parents 2e49989 + b686510 commit 915db1b
Show file tree
Hide file tree
Showing 2 changed files with 3 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\n" % (k, generated) if self.args.todo_only else "# %s\n\n%s\n---\n" % (k, generated)
)
return report_str

Expand Down
3 changes: 2 additions & 1 deletion tests/todo-only/report-todo-only.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
**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 915db1b

Please sign in to comment.