From 6840dc8c8600c38e3344b9e641d40b29559a4ca1 Mon Sep 17 00:00:00 2001 From: Aditya Nagesh Date: Tue, 4 Jun 2024 17:06:01 +0530 Subject: [PATCH] iDEBUG --- lisa/sut_orchestrator/azure/features.py | 2 +- microsoft/testsuites/core/storage.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lisa/sut_orchestrator/azure/features.py b/lisa/sut_orchestrator/azure/features.py index 9b26295cf2..a23489b4f5 100644 --- a/lisa/sut_orchestrator/azure/features.py +++ b/lisa/sut_orchestrator/azure/features.py @@ -3157,7 +3157,7 @@ def create_file_share( storage_account_name = self._storage_account_name fs_url_dict: Dict[str, str] = {} - + print("Platform credential", platform.credential) check_or_create_storage_account( credential=platform.credential, subscription_id=platform.subscription_id, diff --git a/microsoft/testsuites/core/storage.py b/microsoft/testsuites/core/storage.py index b97b563354..1a9225cbef 100644 --- a/microsoft/testsuites/core/storage.py +++ b/microsoft/testsuites/core/storage.py @@ -613,6 +613,8 @@ def verify_cifs_basic(self, node: Node, environment: Environment) -> None: file=str(test_file_path), sudo=True, force_run=True ) assert file_content_after_mount == initial_file_content + except Exception as e: + print(e) finally: azure_file_share.delete_azure_fileshare([fileshare_name])