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 88385ac commit 548107eCopy full SHA for 548107e
tests/test_init_annot.py
@@ -18,7 +18,7 @@ def test_meta_init(tmpdir):
18
project = sa.create_project(name, description, project_type)
19
20
sa.upload_images_from_folder_to_project(
21
- project, from_folder, annotation_status="NotStarted"
+ project, from_folder, annotation_status="InProgress"
22
)
23
24
for image in from_folder.glob("*.jpg"):
@@ -27,3 +27,6 @@ def test_meta_init(tmpdir):
27
print(annot)
28
assert annot["metadata"]["width"] == size[1]
29
assert annot["metadata"]["height"] == size[0]
30
+ assert len(annot["metadata"]) == 2
31
+
32
+ sa.download_export(project, sa.prepare_export(project), tmpdir)
0 commit comments