Skip to content

Commit

Permalink
add new line to group
Browse files Browse the repository at this point in the history
  • Loading branch information
tcarmet committed Aug 7, 2024
1 parent 7e2fc7d commit 23b47c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bert_e/tests/test_bert_e.py
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ def setUp(self):
self.ci: bool = bool(getenv('CI', False))
if self.ci:
# print a group with the test name that is about to run
log.info(f"::group::{self._testMethodName}")
log.info(f"\n::group::{self._testMethodName}")
self.admin_id = None
self.contributor_id = None
# repo creator and reviewer
Expand Down Expand Up @@ -899,7 +899,7 @@ def tearDown(self):
self.gitrepo.delete()
if self.ci:
# end the group with the test name that just ran
log.info("::endgroup::")
log.info("\n::endgroup::")

def create_pr(
self,
Expand Down

0 comments on commit 23b47c7

Please sign in to comment.