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 6218c4a commit 97f46dcCopy full SHA for 97f46dc
tests/integration/test_benchmark.py
@@ -108,4 +108,4 @@ def test_benchmark(self):
108
image_list=image_names,
109
)
110
111
- assert sorted(res_images["imageName"].unique()) == sorted(image_names)
+ assert sorted(res_images["itemName"].unique()) == sorted(image_names)
tests/integration/tiled_project/test_tiled_project.py
@@ -0,0 +1,14 @@
1
+from src.superannotate import SAClient
2
+from tests.integration.base import BaseTestCase
3
+
4
+sa = SAClient()
5
6
7
+class TestTiledProject(BaseTestCase):
8
+ PROJECT_NAME = "TestGetIntegrations"
9
+ PROJECT_DESCRIPTION = "desc"
10
+ PROJECT_TYPE = "Tiled"
11
12
+ def test_get_metadata(self):
13
+ self._attach_items()
14
+ assert all([i['metadata']['name'] for i in sa.get_annotations(self.PROJECT_NAME)])
0 commit comments