File tree Expand file tree Collapse file tree 5 files changed +8
-10
lines changed
reportportal_client/_internal Expand file tree Collapse file tree 5 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 23
23
24
24
_T = TypeVar ('_T' )
25
25
26
-
27
26
DEFAULT_TASK_TRIGGER_NUM : int = 10
28
27
DEFAULT_TASK_TRIGGER_INTERVAL : float = 1.0
29
28
Original file line number Diff line number Diff line change 22
22
from .constants import CLIENT_ID_PROPERTY , RP_FOLDER_PATH , \
23
23
RP_PROPERTIES_FILE_PATH
24
24
25
-
26
25
logger = logging .getLogger (__name__ )
27
26
logger .addHandler (logging .NullHandler ())
28
27
Original file line number Diff line number Diff line change 13
13
14
14
from typing import Optional , Text
15
15
16
- def _read_client_id () -> Optional [Text ]:
17
- pass
18
16
19
- def _store_client_id (client_id : Text ) -> None :
20
- pass
17
+ def _read_client_id () -> Optional [Text ]: ...
21
18
22
- def get_client_id () -> Text :
23
- pass
19
+
20
+ def _store_client_id (client_id : Text ) -> None : ...
21
+
22
+
23
+ def get_client_id () -> Text : ...
Original file line number Diff line number Diff line change 22
22
import certifi
23
23
import requests
24
24
25
- from reportportal_client .helpers import get_package_parameters
26
25
from reportportal_client ._internal .services .client_id import get_client_id
27
26
from reportportal_client ._internal .services .constants import CLIENT_INFO , ENDPOINT
27
+ from reportportal_client .helpers import get_package_parameters
28
28
29
29
logger = logging .getLogger (__name__ )
30
30
Original file line number Diff line number Diff line change 14
14
"""This module provides RP client static objects and variables."""
15
15
16
16
import aenum as enum
17
- from reportportal_client .helpers import ATTRIBUTE_LENGTH_LIMIT as ATTRIBUTE_LIMIT
18
17
18
+ from reportportal_client .helpers import ATTRIBUTE_LENGTH_LIMIT as ATTRIBUTE_LIMIT
19
19
20
20
RP_LOG_LEVELS = {
21
21
60000 : 'UNKNOWN' ,
You can’t perform that action at this time.
0 commit comments