Skip to content

Commit 95fb217

Browse files
author
Vasileios Karakasis
authored
Merge pull request #1401 from vkarak/doc/enhance-require-deps
[doc] Expand documentation of `@require_deps` decorator
2 parents 072b358 + 553fb5c commit 95fb217

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

reframe/core/decorators.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,13 @@ def require_deps(func):
227227
The converted arguments are essentially functions accepting a single
228228
argument, which is the target test's programming environment.
229229
230+
Additionally, this decorator will attach the function to run *after* the
231+
test's setup phase, but *before* any other "post_setup" pipeline hook.
232+
230233
This decorator is also directly available under the :mod:`reframe` module.
231234
232235
.. versionadded:: 2.21
236+
233237
'''
234238
tests = inspect.getfullargspec(func).args[1:]
235239
func._rfm_resolve_deps = True

0 commit comments

Comments
 (0)