Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions reframe/core/decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,13 @@ def require_deps(func):
The converted arguments are essentially functions accepting a single
argument, which is the target test's programming environment.

Additionally, this decorator will attach the function to run *after* the
test's setup phase, but *before* any other "post_setup" pipeline hook.

This decorator is also directly available under the :mod:`reframe` module.

.. versionadded:: 2.21

'''
tests = inspect.getfullargspec(func).args[1:]
func._rfm_resolve_deps = True
Expand Down