FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
allure-python/allure-python-commons/src/_core.py at master · daerwang/allure-python · GitHub
daerwang
/
allure-python
Public
forked from
allure-framework/allure-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
allure-python
/
allure-python-commons
/
src
/
_core.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
25 lines (18 loc) · 813 Bytes
Breadcrumbs
allure-python
/
allure-python-commons
/
src
/
_core.py
Copy path
File metadata and controls
25 lines (18 loc) · 813 Bytes
Raw
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
Back
|
FazBrowse Home
|
New Git URL