Skip to content

Commit

Permalink
Skip test_get_workspace_client in Azure and GCP (#531)
Browse files Browse the repository at this point in the history
## Changes
<!-- Summary of your changes that are easy to understand -->
We skip this test since it doesn't work currently in Azure and GCP

## Tests
<!-- 
How is this tested? Please see the checklist below and also describe any
other relevant tests
-->

- [ ] `make test` run locally
- [ ] `make fmt` applied
- [ ] relevant integration tests applied
  • Loading branch information
tanmay-db authored Feb 7, 2024
1 parent e290be9 commit a57b7e0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/integration/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit a57b7e0

Please sign in to comment.