Coverage for src/debputy/plugin/api/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2024-04-07 12:14 +0200

1from ...exceptions import ( 

2 DebputyPluginRuntimeError, 

3 DebputyMetadataAccessError, 

4) 

5from .spec import ( 

6 DebputyPluginInitializer, 

7 PackageProcessingContext, 

8 MetadataAutoDetector, 

9 DpkgTriggerType, 

10 Maintscript, 

11 VirtualPath, 

12 BinaryCtrlAccessor, 

13 PluginInitializationEntryPoint, 

14 undocumented_attr, 

15 documented_attr, 

16 reference_documentation, 

17 virtual_path_def, 

18 packager_provided_file_reference_documentation, 

19) 

20 

21__all__ = [ 

22 "DebputyPluginInitializer", 

23 "PackageProcessingContext", 

24 "MetadataAutoDetector", 

25 "DpkgTriggerType", 

26 "Maintscript", 

27 "BinaryCtrlAccessor", 

28 "VirtualPath", 

29 "PluginInitializationEntryPoint", 

30 "documented_attr", 

31 "undocumented_attr", 

32 "reference_documentation", 

33 "virtual_path_def", 

34 "DebputyPluginRuntimeError", 

35 "DebputyMetadataAccessError", 

36 "packager_provided_file_reference_documentation", 

37]