mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Fail Fast tests on next run if previous running has failed
This commit is contained in:
parent
c80d8081d2
commit
c28e8438e3
@ -112,6 +112,9 @@ def main():
|
||||
rerun_helper = RerunHelper(gh, pr_info, NAME)
|
||||
if rerun_helper.is_already_finished_by_status():
|
||||
logging.info("Check is already finished according to github status, exiting")
|
||||
status = rerun_helper.get_finished_status()
|
||||
if status is not None and status.state != "success":
|
||||
sys.exit(1)
|
||||
sys.exit(0)
|
||||
|
||||
docker_image = get_image_with_version(temp_path, "clickhouse/fasttest")
|
||||
|
Loading…
Reference in New Issue
Block a user