Skip to content

Commit 791817a

Browse files
author
Val Brodsky
committed
Skip 3 test broken due to sunset-custom-editor HF
They have reverted the change that created labeling front ends automatically
1 parent d9fc976 commit 791817a

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

libs/labelbox/tests/integration/test_filtering.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ def project_to_test_where(client, rand_gen):
2424

2525
# Avoid assertions using equality to prevent intermittent failures due to
2626
# other builds simultaneously adding projects to test org
27+
@pytest.mark.skip(
28+
reason="broken due to get_projects HF for sunset-custom-editor")
2729
def test_where(client, project_to_test_where):
2830
p_a, p_b, p_c = project_to_test_where
2931
p_a_name = p_a.name

libs/labelbox/tests/integration/test_labeling_frontend.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from labelbox import LabelingFrontend
2+
import pytest
23

34

45
def test_get_labeling_frontends(client):
@@ -7,6 +8,8 @@ def test_get_labeling_frontends(client):
78
assert len(filtered_frontends)
89

910

11+
@pytest.mark.skip(
12+
reason="broken due to get_projects HF for sunset-custom-editor")
1013
def test_labeling_frontend_connecting_to_project(project):
1114
client = project.client
1215
default_labeling_frontend = next(

libs/labelbox/tests/integration/test_project.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ def delete_tag(tag_id: str):
119119
delete_tag(tagB.uid)
120120

121121

122+
@pytest.mark.skip(
123+
reason="broken due to get_projects HF for sunset-custom-editor")
122124
def test_project_filtering(client, rand_gen, data_for_project_test):
123125
name_1 = rand_gen(str)
124126
p1 = data_for_project_test(name_1)

0 commit comments

Comments
 (0)