From ded5813ead5c033531947a717f5d3d94c30b2f91 Mon Sep 17 00:00:00 2001 From: David Murphy Date: Tue, 5 Nov 2024 11:18:29 -0700 Subject: [PATCH] Debugging tests --- tests/integration/test_installation.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/test_installation.py b/tests/integration/test_installation.py index 3a65144..1904d04 100644 --- a/tests/integration/test_installation.py +++ b/tests/integration/test_installation.py @@ -26,6 +26,7 @@ def run_salt_call(cmd): """ cmd.append("--out=json") result = subprocess.run(cmd, capture_output=True, text=True) + print(f"DGM run_salt_call, cmd '{cmd}', result '{result}'", flush=True) json_data = json.loads(result.stdout) return json_data["local"]