From 2d349e0e22d93bfc4dfea983e8adc4bf064db0eb Mon Sep 17 00:00:00 2001 From: Tanmay Rustagi Date: Wed, 7 Feb 2024 12:52:28 +0100 Subject: [PATCH 1/2] Skip test_get_workspace_client in Azure and GCP --- tests/integration/test_client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/integration/test_client.py b/tests/integration/test_client.py index 37941ddf0..269b7d17b 100644 --- a/tests/integration/test_client.py +++ b/tests/integration/test_client.py @@ -2,6 +2,8 @@ def test_get_workspace_client(a): + if a.config.is_azure or a.config.is_gcp: + pytest.skip('not available on Azure and GCP currently') wss = list(a.workspaces.list()) if len(wss) == 0: pytest.skip("no workspaces") From 0c4142875272efcd26be50ba07e4cc77bf35f61d Mon Sep 17 00:00:00 2001 From: Tanmay Rustagi Date: Wed, 7 Feb 2024 12:55:07 +0100 Subject: [PATCH 2/2] Skip test_get_workspace_client in Azure and GCP --- tests/integration/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_client.py b/tests/integration/test_client.py index 269b7d17b..e356de51c 100644 --- a/tests/integration/test_client.py +++ b/tests/integration/test_client.py @@ -3,7 +3,7 @@ def test_get_workspace_client(a): if a.config.is_azure or a.config.is_gcp: - pytest.skip('not available on Azure and GCP currently') + pytest.skip('Not available on Azure and GCP currently') wss = list(a.workspaces.list()) if len(wss) == 0: pytest.skip("no workspaces")