We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19ff896 commit 352bf6eCopy full SHA for 352bf6e
reframe/core/pipeline.py
@@ -149,7 +149,7 @@ def disable_hook(cls, hook_name):
149
cls._rfm_disabled_hooks.add(hook_name)
150
151
@classmethod
152
- def hooks(cls):
+ def pipeline_hooks(cls):
153
ret = {}
154
for c in cls.mro():
155
if hasattr(c, '_rfm_pipeline_hooks'):
reframe/frontend/cli.py
@@ -71,7 +71,7 @@ def fmt_deps():
71
'Node allocation': node_alloc_scheme,
72
'Pipeline hooks': {
73
k: fmt_list(fn.__name__ for fn in v)
74
- for k, v in type(check).hooks().items()
+ for k, v in check.pipeline_hooks().items()
75
},
76
'Tags': fmt_list(check.tags),
77
'Valid environments': fmt_list(check.valid_prog_environs),
0 commit comments