From d4813165e60b182c796e124d29aa39f37b0d523b Mon Sep 17 00:00:00 2001 From: Anton Kuznets Date: Fri, 25 Oct 2024 19:10:24 +0300 Subject: [PATCH] Add default server restart before each test in consistent mode Needed for tarantool/tarantool#6965 Closes tarantool/tarantool#6965 --- test-run.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test-run.py b/test-run.py index 4071c270..993a628c 100755 --- a/test-run.py +++ b/test-run.py @@ -183,6 +183,7 @@ def main_loop_consistent(failed_test_ids): worker_id = 1 worker = task_group['gen_worker'](worker_id) for task_id in task_ids: + worker.restart_server() # The 'run_task' method returns a tuple of two items: # (short_status, duration). So taking the first # item of this tuple for failure check.