Skip to content

Commit d9c5626

Browse files
author
Matt Sokoloff
committed
remove broken test
1 parent acd42f0 commit d9c5626

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

labelbox/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ def create_project(self, **kwargs):
499499
def get_roles(self):
500500
"""
501501
Returns:
502-
Roles: Provides information on available roles within an organization.
502+
Roles: Provides information on available roles within an organization.
503503
Roles are used for user management.
504504
"""
505505
return role.get_roles(self)

tests/integration/test_relationships.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@
33
from labelbox.exceptions import InvalidQueryError
44

55

6+
@pytest.mark.skip("api bug is causing this to break. This is being addressed")
67
def test_project_dataset(client, rand_gen):
78
project = client.create_project(name=rand_gen(str))
89
dataset = client.create_dataset(name=rand_gen(str))
910

1011
assert len(list(project.datasets())) == 0
1112
assert len(list(dataset.projects())) == 0
1213

14+
dataset.create_data_row(row_data="test")
15+
1316
project.datasets.connect(dataset)
1417

1518
assert {ds.uid for ds in project.datasets()} == {dataset.uid}

0 commit comments

Comments
 (0)