Skip to content

Commit 5f82171

Browse files
committed
video upload cli
1 parent 844de44 commit 5f82171

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

install.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,6 @@ pip install pytest pytest-xdist
2222

2323
# for docs
2424
pip install sphinx sphinx_rtd_theme
25+
26+
# for pip
27+
pip install twine

superannotate/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.2.2"
1+
__version__ = "2.2.3"

tests/test_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_cli_image_upload_project_export(tmpdir):
2222
)
2323
subprocess.run(
2424
[
25-
f"superannotate image-upload --project '{PROJECT_NAME}' --folder ./tests/sample_recursive_test --extensions=jpg --set-annotation-status QualityCheck"
25+
f"superannotate upload-images --project '{PROJECT_NAME}' --folder ./tests/sample_recursive_test --extensions=jpg --set-annotation-status QualityCheck"
2626
],
2727
check=True,
2828
shell=True
@@ -31,7 +31,7 @@ def test_cli_image_upload_project_export(tmpdir):
3131
assert len(sa.search_images(project)) == 1
3232
subprocess.run(
3333
[
34-
f"superannotate image-upload --project '{PROJECT_NAME}' --folder ./tests/sample_recursive_test --extensions=jpg --recursive"
34+
f"superannotate upload-images --project '{PROJECT_NAME}' --folder ./tests/sample_recursive_test --extensions=jpg --recursive"
3535
],
3636
check=True,
3737
shell=True

0 commit comments

Comments
 (0)