|
| 1 | +# Run with cwltest --test test-index.yaml --tool cwltool |
| 2 | + |
| 3 | +# --- workflow |
| 4 | +# ----- using requirements |
| 5 | +# ------- with default values |
| 6 | +- job: empty-job.yml |
| 7 | + tool: wf-reqs.cwl |
| 8 | + label: eager_reqs_wf_reqs_default_threads |
| 9 | + doc: Test a workflow with requirements using the default values |
| 10 | + output: |
| 11 | + { |
| 12 | + "out": "4\n" |
| 13 | + } |
| 14 | + tags: [ resource, workflow ] |
| 15 | + id: eager-eval-reqs-hints-1 |
| 16 | +# ------- with provided inputs |
| 17 | +- job: 10-cpus-job.yml |
| 18 | + tool: wf-reqs.cwl |
| 19 | + label: eager_reqs_wf_reqs_10_threads |
| 20 | + doc: Test a workflow with requirements using 10 threads |
| 21 | + output: |
| 22 | + { |
| 23 | + "out": "10\n" |
| 24 | + } |
| 25 | + tags: [ resource, workflow ] |
| 26 | + id: eager-eval-reqs-hints-2 |
| 27 | +# ----- using hints |
| 28 | +# ------- with default values |
| 29 | +- job: empty-job.yml |
| 30 | + tool: wf-hints.cwl |
| 31 | + label: eager_reqs_wf_hints_default_threads |
| 32 | + doc: Test a workflow with hints using the default values |
| 33 | + output: |
| 34 | + { |
| 35 | + "out": "4\n" |
| 36 | + } |
| 37 | + tags: [ resource, workflow ] |
| 38 | + id: eager-eval-reqs-hints-3 |
| 39 | +# ------- with provided inputs |
| 40 | +- job: 10-cpus-job.yml |
| 41 | + tool: wf-hints.cwl |
| 42 | + label: eager_reqs_wf_hints_10_threads |
| 43 | + doc: Test a workflow with hints using 10 threads |
| 44 | + output: |
| 45 | + { |
| 46 | + "out": "10\n" |
| 47 | + } |
| 48 | + tags: [ resource, workflow ] |
| 49 | + id: eager-eval-reqs-hints-4 |
| 50 | + |
| 51 | +# --- command-line tool |
| 52 | +# ----- using requirements |
| 53 | +# ------- with default values |
| 54 | +- job: empty-job.yml |
| 55 | + tool: cmdtool-reqs.cwl |
| 56 | + label: eager_reqs_cmdtool_reqs_default_threads |
| 57 | + doc: Test a cmdtool with requirements using the default values |
| 58 | + output: |
| 59 | + { |
| 60 | + "out": "4\n" |
| 61 | + } |
| 62 | + tags: [ resource, command_line_tool ] |
| 63 | + id: eager-eval-reqs-hints-5 |
| 64 | +# ------- with provided inputs |
| 65 | +- job: 10-cpus-job.yml |
| 66 | + tool: cmdtool-reqs.cwl |
| 67 | + label: eager_reqs_cmdtool_reqs_10_threads |
| 68 | + doc: Test a cmdtool with requirements using 10 threads |
| 69 | + output: |
| 70 | + { |
| 71 | + "out": "10\n" |
| 72 | + } |
| 73 | + tags: [ resource, command_line_tool ] |
| 74 | + id: eager-eval-reqs-hints-6 |
| 75 | +# ----- using hints |
| 76 | +# ------- with default values |
| 77 | +- job: empty-job.yml |
| 78 | + tool: cmdtool-hints.cwl |
| 79 | + label: eager_reqs_cmdtool_hints_default_threads |
| 80 | + doc: Test a cmdtool with hints using the default values |
| 81 | + output: |
| 82 | + { |
| 83 | + "out": "4\n" |
| 84 | + } |
| 85 | + tags: [ resource, command_line_tool ] |
| 86 | + id: eager-eval-reqs-hints-7 |
| 87 | +# ------- with provided inputs |
| 88 | +- job: 10-cpus-job.yml |
| 89 | + tool: cmdtool-hints.cwl |
| 90 | + label: eager_reqs_cmdtool_hints_10_threads |
| 91 | + doc: Test a cmdtool with hints using 10 threads |
| 92 | + output: |
| 93 | + { |
| 94 | + "out": "10\n" |
| 95 | + } |
| 96 | + tags: [ resource, command_line_tool ] |
| 97 | + id: eager-eval-reqs-hints-8 |
| 98 | + |
| 99 | +# --- expression tool |
| 100 | +# ----- using requirements |
| 101 | +# ------- with default values |
| 102 | +- job: empty-job.yml |
| 103 | + tool: expr-reqs.cwl |
| 104 | + label: eager_reqs_expr_reqs_default_threads |
| 105 | + doc: Test a expr with requirements using the default values |
| 106 | + output: |
| 107 | + { |
| 108 | + "out": 4 |
| 109 | + } |
| 110 | + tags: [ resource, expression_tool ] |
| 111 | + id: eager-eval-reqs-hints-9 |
| 112 | +# ------- with provided inputs |
| 113 | +- job: 10-cpus-job.yml |
| 114 | + tool: expr-reqs.cwl |
| 115 | + label: eager_reqs_expr_reqs_10_threads |
| 116 | + doc: Test a expr with requirements using 10 threads |
| 117 | + output: |
| 118 | + { |
| 119 | + "out": 10 |
| 120 | + } |
| 121 | + tags: [ resource, expression_tool ] |
| 122 | + id: eager-eval-reqs-hints-10 |
| 123 | +# ----- using hints |
| 124 | +# ------- with default values |
| 125 | +- job: empty-job.yml |
| 126 | + tool: expr-hints.cwl |
| 127 | + label: eager_reqs_expr_hints_default_threads |
| 128 | + doc: Test a expr with hints using the default values |
| 129 | + output: |
| 130 | + { |
| 131 | + "out": 4 |
| 132 | + } |
| 133 | + tags: [ resource, expression_tool ] |
| 134 | + id: eager-eval-reqs-hints-11 |
| 135 | +# ------- with provided inputs |
| 136 | +- job: 10-cpus-job.yml |
| 137 | + tool: expr-hints.cwl |
| 138 | + label: eager_reqs_expr_hints_10_threads |
| 139 | + doc: Test a expr with hints using 10 threads |
| 140 | + output: |
| 141 | + { |
| 142 | + "out": 10 |
| 143 | + } |
| 144 | + tags: [ resource, expression_tool ] |
| 145 | + id: eager-eval-reqs-hints-12 |
0 commit comments