From a57b7e022d14c567a583eb91b98699c80519c224 Mon Sep 17 00:00:00 2001 From: Tanmay Rustagi <88379306+tanmay-db@users.noreply.github.com> Date: Wed, 7 Feb 2024 13:10:08 +0100 Subject: [PATCH] Skip test_get_workspace_client in Azure and GCP (#531) ## Changes We skip this test since it doesn't work currently in Azure and GCP ## Tests - [ ] `make test` run locally - [ ] `make fmt` applied - [ ] relevant integration tests applied --- 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..e356de51c 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")