forked from allure-framework/allure-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_core.py
More file actions
25 lines (18 loc) · 813 Bytes
/
_core.py
File metadata and controls
25 lines (18 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import threading
from six import with_metaclass
from pluggy import PluginManager
from allure_commons import _hooks
class MetaPluginManager(type):
_storage = threading.local()
@staticmethod
def get_plugin_manager():
if not hasattr(MetaPluginManager._storage, 'plugin_manager'):
MetaPluginManager._storage.plugin_manager = PluginManager('allure')
MetaPluginManager._storage.plugin_manager.add_hookspecs(_hooks.AllureUserHooks)
MetaPluginManager._storage.plugin_manager.add_hookspecs(_hooks.AllureDeveloperHooks)
return MetaPluginManager._storage.plugin_manager
def __getattr__(cls, attr):
pm = MetaPluginManager.get_plugin_manager()
return getattr(pm, attr)
class plugin_manager(with_metaclass(MetaPluginManager)):
pass