Coverage for mindsdb / integrations / handlers / dockerhub_handler / connection_args.py: 0%

4 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-01-21 00:36 +0000

1from collections import OrderedDict 

2 

3from mindsdb.integrations.libs.const import HANDLER_CONNECTION_ARG_TYPE as ARG_TYPE 

4 

5 

6connection_args = OrderedDict( 

7 username={ 

8 "type": ARG_TYPE.STR, 

9 "description": "DockerHub username", 

10 "required": True, 

11 "label": "username", 

12 }, 

13 password={ 

14 "type": ARG_TYPE.PWD, 

15 "description": "DockerHub password", 

16 "required": True, 

17 "label": "Api key", 

18 'secret': True 

19 } 

20) 

21 

22connection_args_example = OrderedDict( 

23 username="username", 

24 password="password" 

25)