File tree Expand file tree Collapse file tree 4 files changed +22
-13
lines changed Expand file tree Collapse file tree 4 files changed +22
-13
lines changed Original file line number Diff line number Diff line change @@ -170,6 +170,8 @@ $graph:
170170 ` echo a && echo b` , and capture the output correctly.
171171 * `record_order_with_input_bindings`: Test sorting arguments at each level
172172 (`inputBinding` for all levels).
173+ * `json_output_path_relative`: Test support for reading cwl.output.json
174+ where 'path' is relative path in output dir.
173175
174176 # ## New Optional Conformance Tests for v1.2.1
175177
Original file line number Diff line number Diff line change 975975 id : json_output_path_relative
976976 doc : >-
977977 Test support for reading cwl.output.json where 'path' is relative path in output dir.
978- tags : [ shell_command , command_line_tool ]
978+ tags : [ required , command_line_tool ]
979979
980980- job : tests/empty.json
981981 output : {
990990 id : json_output_location_relative
991991 doc : >-
992992 Test support for reading cwl.output.json where 'location' is relative reference to output dir.
993- tags : [ shell_command , command_line_tool ]
993+ tags : [ required , command_line_tool ]
994994
995995- job : tests/abc.json
996996 output :
Original file line number Diff line number Diff line change 11class: CommandLineTool
22cwlVersion: v1.2
3- requirements :
4- - class: ShellCommandRequirement
53hints :
64 DockerRequirement:
75 dockerPull: docker.io/debian:stable-slim
86
7+ baseCommand : sh
8+
99inputs : []
1010
1111outputs :
1212 - id : foo
1313 type : File
1414
15+ stdout : cwl.output.json
16+
1517arguments :
16- - valueFrom : >
17- echo foo > foo && echo '{"foo": {"path": "foo", "class": "File"} }' > cwl.output.json
18- shellQuote : false
18+ - -c
19+ - |
20+ echo foo > foo && echo '{"foo": {"path": "foo", "class": "File"} }'
Original file line number Diff line number Diff line change 11class: CommandLineTool
22cwlVersion: v1.2
3- requirements :
4- - class: ShellCommandRequirement
3+
54hints :
65 DockerRequirement:
76 dockerPull: docker.io/debian:stable-slim
87
98inputs : []
109
10+ baseCommand : sh
11+
12+ arguments :
13+ - -c
14+ - |
15+ echo foo > foo && echo '{"foo": {"location": "foo", "class": "File"} }'
16+
17+ stdout : cwl.output.json
18+
1119outputs :
1220 - id : foo
1321 type : File
1422
15- arguments :
16- - valueFrom : >
17- echo foo > foo && echo '{"foo": {"location": "foo", "class": "File"} }' > cwl.output.json
18- shellQuote : false
23+
You can’t perform that action at this time.
0 commit comments