From 8d0f263afb1981b9b4c4ed373311465a3c9302a0 Mon Sep 17 00:00:00 2001 From: Bernard Szabo Date: Fri, 6 Dec 2024 12:33:12 -0500 Subject: [PATCH] Try succeeding with a sys.exit(0) --- tubular/scripts/dd_synthetic_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubular/scripts/dd_synthetic_tests.py b/tubular/scripts/dd_synthetic_tests.py index 35a5dd5f..de0af83f 100644 --- a/tubular/scripts/dd_synthetic_tests.py +++ b/tubular/scripts/dd_synthetic_tests.py @@ -188,7 +188,7 @@ def run_synthetic_tests(enable_automated_rollbacks, slack_notification_channel): print("An error occurred:", str(e)) exit() - sys.exit(1) + sys.exit(0) if __name__ == "__main__": run_synthetic_tests(False, None) # pylint: disable=no-value-for-parameter