From a5c2634c94d9493b163577156a7b1c711aed77a9 Mon Sep 17 00:00:00 2001 From: Laurent Indermuehle Date: Fri, 20 Jan 2023 18:19:56 +0100 Subject: [PATCH] Document TODO --- run_all_tests.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/run_all_tests.py b/run_all_tests.py index e64933e..5000526 100755 --- a/run_all_tests.py +++ b/run_all_tests.py @@ -77,6 +77,9 @@ def main(): make_cmd = f'make ansible="{a}" db_engine_version="{d}" python="{p}" connector="{c}" docker_image="{i}" test-integration' print(f'Run tests for: Ansible: {a}, DB: {d}, Python: {p}, Connector: {c}, Docker image: {i}') os.system(make_cmd) + # TODO, allow for CTRL+C to break the loop more easily + # TODO, store the failures from this iteration + # TODO, display a summary of failures from every iterations if __name__ == '__main__':