File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -182,8 +182,11 @@ def _fix_hints_and_requirements(
182
182
hints_or_requirements : List [CWLObjectType ],
183
183
requirements_or_hints_to_evaluate : List [str ],
184
184
) -> None :
185
- """Internal function to iterate the hints or requirements of steps
186
- provided and evaluate the ones that exist in the parent process.
185
+ """Fix hints and requirements of a workflow eagerly.
186
+
187
+ Internal function to iterate the hints or requirements
188
+ of steps provided and evaluate the ones that exist in
189
+ the parent process.
187
190
"""
188
191
for hint_or_requirement in hints_or_requirements :
189
192
for key , value in hint_or_requirement .items ():
Original file line number Diff line number Diff line change 8
8
9
9
def test_workflow_reqs_are_evaluated_eagerly_default_args () -> None :
10
10
"""Test that a Workflow process will evaluate the requirements eagerly.
11
+
11
12
Uses the default input values.
12
13
13
14
This means that workflow steps, such as Expression and Command Line Tools
@@ -33,6 +34,7 @@ def test_workflow_reqs_are_evaluated_eagerly_default_args() -> None:
33
34
34
35
def test_workflow_reqs_are_evaluated_eagerly_provided_inputs () -> None :
35
36
"""Test that a Workflow process will evaluate the requirements eagerly.
37
+
36
38
Passes inputs via a job file.
37
39
38
40
This means that workflow steps, such as Expression and Command Line Tools
You can’t perform that action at this time.
0 commit comments