Skip to content

Commit fe1419a

Browse files
dshabinVaghinak Basentsyan
authored andcommitted
Fix init docstring
1 parent 28ae8fa commit fe1419a

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/superannotate/lib/app/interface/sdk_interface.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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
"""

tests/integration/test_recursive_folder.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import tempfile
44
from os.path import dirname
55
from pathlib import Path
6+
import pytest
67

78
import src.superannotate as sa
89
from 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",

0 commit comments

Comments
 (0)