Skip to content

Commit

Permalink
Do not report TestFailedException in test results (#3019)
Browse files Browse the repository at this point in the history
Co-authored-by: narrieta <narrieta>
  • Loading branch information
narrieta authored Jan 12, 2024
1 parent 150de9b commit 24b9f5a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests_e2e/orchestrator/lib/agent_junit.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ def _received_message(self, message: MessageBase) -> None:
if "Unexpected error in AgentTestSuite" in message.message:
# Ignore these errors, they are already reported as AgentTestResultMessages
return
if "TestFailedException" in message.message:
# Ignore these errors, they are already reported as test failures
return
# Change the suite name to "_Runbook_" for LISA messages in order to separate them
# from actual test results.
message.suite_full_name = "_Runbook_"
Expand Down

0 comments on commit 24b9f5a

Please sign in to comment.