From 55f3da45226c4c45076c49bb2ab10657634253b1 Mon Sep 17 00:00:00 2001 From: Theofilos Manitaras Date: Wed, 24 Nov 2021 11:43:55 +0100 Subject: [PATCH] Improve documentation of `(pre|post)run_cmds` --- reframe/core/pipeline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reframe/core/pipeline.py b/reframe/core/pipeline.py index acd85fafb6..0680c70864 100644 --- a/reframe/core/pipeline.py +++ b/reframe/core/pipeline.py @@ -401,7 +401,7 @@ def pipeline_hooks(cls): #: .. versionadded:: 3.0 #: - #: List of shell commands to execute before launching this job. + #: List of shell commands to execute before the parallel launch command. #: #: These commands do not execute in the context of ReFrame. #: Instead, they are emitted in the generated job script just before the @@ -413,7 +413,7 @@ def pipeline_hooks(cls): #: .. versionadded:: 3.0 #: - #: List of shell commands to execute after launching this job. + #: List of shell commands to execute after the parallel launch command. #: #: See :attr:`prerun_cmds` for a more detailed description of the #: semantics.