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")