Skip to content

Commit b284d0d

Browse files
author
Val Brodsky
committed
Temporarily disable test_delegated_access with DA_GCP_LABELBOX_API_KEY
1 parent 14d7a89 commit b284d0d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

tests/integration/test_delegated_access.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
from labelbox import Client
77

88

9+
@pytest.mark.skip(
10+
reason=
11+
"Google credentials are being updated for this test, disabling till it's all sorted out"
12+
)
913
@pytest.mark.skipif(not os.environ.get('DA_GCP_LABELBOX_API_KEY'),
1014
reason="DA_GCP_LABELBOX_API_KEY not found")
1115
def test_default_integration():
@@ -28,6 +32,10 @@ def test_default_integration():
2832
ds.delete()
2933

3034

35+
@pytest.mark.skip(
36+
reason=
37+
"Google credentials are being updated for this test, disabling till it's all sorted out"
38+
)
3139
@pytest.mark.skipif(not os.environ.get("DA_GCP_LABELBOX_API_KEY"),
3240
reason="DA_GCP_LABELBOX_API_KEY not found")
3341
def test_non_default_integration():
@@ -67,4 +75,4 @@ def test_no_integration(client, image_url):
6775
def test_no_default_integration(client):
6876
ds = client.create_dataset(name="new_ds")
6977
assert ds.iam_integration() is None
70-
ds.delete()
78+
ds.delete()

0 commit comments

Comments
 (0)