File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
src/superannotate/lib/app/interface Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ def init(path_to_config_json: str):
6363 Initializes and authenticates to SuperAnnotate platform using the config file.
6464 If not initialized then $HOME/.superannotate/config.json
6565 will be used.
66+
6667 :param path_to_config_json: Location to config JSON file
6768 :type path_to_config_json: str or Path
6869 """
Original file line number Diff line number Diff line change 33import tempfile
44from os .path import dirname
55from pathlib import Path
6+ import pytest
67
78import src .superannotate as sa
89from tests .integration .base import BaseTestCase
@@ -275,12 +276,14 @@ def test_images_non_recursive_s3(self):
275276
276277 self .assertEqual (len (sa .search_images (self .PROJECT_NAME )), 1 )
277278
279+ @pytest .mark .skip (reason = "Taking long time." )
278280 def test_images_recursive_s3_122 (self ):
279281 sa .upload_images_from_folder_to_project (self .PROJECT_NAME , '8sep' ,
280282 from_s3_bucket = "superannotate-python-sdk-test" ,
281283 recursive_subfolders = True )
282284 self .assertEqual (len (sa .search_images (self .PROJECT_NAME )), 122 )
283285
286+ @pytest .mark .skip (reason = "Taking long time." )
284287 def test_annotations_recursive_s3_122 (self ):
285288 sa .upload_images_from_folder_to_project (self .PROJECT_NAME , '8sep' ,
286289 from_s3_bucket = "superannotate-python-sdk-test" ,
You can’t perform that action at this time.
0 commit comments