mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Fail performance comparison tests on errors
This commit is contained in:
parent
f11cfdca94
commit
5b70f7f0dc
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user