Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Scripts/o2_linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -1723,7 +1723,7 @@ def main():
if passed:
msg_result = "All tests passed."
if github_mode:
print(f"::notice title={title_result}::{msg_result}")
print(f"\n::notice title={title_result}::{msg_result}")
else:
print(f"\n{title_result}: {msg_result}")
else:
Expand All @@ -1733,7 +1733,7 @@ def main():
" followed by the name of the test and parentheses with a reason for the exception."
)
if github_mode:
print(f"::error title={title_result}::{msg_result}")
print(f"\n::error title={title_result}::{msg_result}")
print(f"::notice::{msg_disable}")
else:
print(f"\n{title_result}: {msg_result}")
Expand Down
Loading