We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b5061e commit da66ff5Copy full SHA for da66ff5
tests/integration/test_delegated_access.py
@@ -6,7 +6,7 @@
6
from labelbox import Client
7
8
9
-@pytest.mark.skipif(os.environ.get("DA_GCP_LABELBOX_API_KEY") == "",
+@pytest.mark.skipif(not os.environ.get('DA_GCP_LABELBOX_API_KEY'),
10
reason="DA_GCP_LABELBOX_API_KEY not found")
11
def test_default_integration():
12
"""
@@ -28,7 +28,7 @@ def test_default_integration():
28
ds.delete()
29
30
31
+@pytest.mark.skipif(not os.environ.get("DA_GCP_LABELBOX_API_KEY"),
32
33
def test_non_default_integration():
34
0 commit comments