Skip to content

Commit 2756131

Browse files
Merge pull request #663 from Labelbox/kkim/skip-label-update
[AL-0] Skip test_label_update for custom env
2 parents dd2052d + 1e5a6eb commit 2756131

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/integration/test_label.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ def test_label_export(configured_project_with_label):
4343

4444
# TODO: Skipping this test in staging due to label not updating
4545
@pytest.mark.skipif(condition=os.environ['LABELBOX_TEST_ENVIRON'] == "onprem" or
46-
os.environ['LABELBOX_TEST_ENVIRON'] == "staging",
46+
os.environ['LABELBOX_TEST_ENVIRON'] == "staging" or
47+
os.environ['LABELBOX_TEST_ENVIRON'] == "custom",
4748
reason="does not work for onprem")
4849
def test_label_update(configured_project_with_label):
4950
_, _, _, label = configured_project_with_label

0 commit comments

Comments
 (0)