Fail performance comparison tests on errors

This commit is contained in:
Mikhail f. Shiryaev 2022-02-21 15:49:52 +01:00
parent f11cfdca94
commit 5b70f7f0dc
No known key found for this signature in database
GPG Key ID: 4B02ED204C7D93F4

View File

@ -186,8 +186,11 @@ if __name__ == "__main__":
if message_match:
message = message_match.group(1).strip()
# TODO: Remove me, always green mode for the first time
# TODO: Remove me, always green mode for the first time, unless errors
status = "success"
if "errors" in message:
status = "failure"
# TODO: Remove until here
except Exception:
traceback.print_exc()
status = "failure"