Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
25 lines (18 loc) · 813 Bytes

File metadata and controls

25 lines (18 loc) · 813 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
Morty Proxy This is a proxified and sanitized view of the page, visit original site.