From 60edbba67f56cc293b50d72b2551153084afe6f6 Mon Sep 17 00:00:00 2001 From: Maxime Carbonneau-Leclerc Date: Thu, 4 Jan 2024 10:32:54 -0500 Subject: [PATCH] [ISSUE #32871] enable debug logs for integration tests (#33718) --- airbyte-cdk/python/airbyte_cdk/test/entrypoint_wrapper.py | 1 + 1 file changed, 1 insertion(+) diff --git a/airbyte-cdk/python/airbyte_cdk/test/entrypoint_wrapper.py b/airbyte-cdk/python/airbyte_cdk/test/entrypoint_wrapper.py index f6fcb2f9737d..06d5e0ebeb20 100644 --- a/airbyte-cdk/python/airbyte_cdk/test/entrypoint_wrapper.py +++ b/airbyte-cdk/python/airbyte_cdk/test/entrypoint_wrapper.py @@ -136,6 +136,7 @@ def read( make_file(tmp_directory_path / "state.json", state), ] ) + args.append("--debug") source_entrypoint = AirbyteEntrypoint(source) parsed_args = source_entrypoint.parse_args(args)