-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathtest-index.yaml
63 lines (55 loc) · 1.59 KB
/
test-index.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#
# Tests that workflow can call out to tools from other versions, also
# tests that documents marked as older versions do not allow syntax
# from newer versions.
#
- job: null
tool: wf-v10.cwl
id: mixed_version_v10_wf
output: {}
doc: test v1.0 workflow document that runs other versions
tags: [ workflow ]
- job: null
tool: wf-v11.cwl
id: mixed_version_v11_wf
output: {}
doc: test v1.1 workflow document that runs other versions
tags: [ workflow ]
- job: null
tool: wf-v12.cwl
id: mixed_version_v12_wf
output: {}
doc: test v1.2 workflow document that runs other versions
tags: [ workflow ]
- job: null
tool: invalid-tool-v10.cwl
id: invalid_syntax_v10_uses_v12_tool
doc: test tool with v1.2 syntax marked as v1.0 (should fail)
should_fail: true
tags: [ command_line_tool ]
- job: null
tool: invalid-tool-v11.cwl
doc: test tool with v1.2 syntax marked as v1.1 (should fail)
id: invalid_syntax_v11_uses_v12_tool
should_fail: true
tags: [ command_line_tool ]
- job: null
tool: invalid-wf-v10.cwl
id: invalid_syntax_v10_uses_v12_workflow
doc: test wf with v1.2 syntax marked as v1.0 (should fail)
should_fail: true
tags: [ workflow ]
- job: null
tool: invalid-wf-v11.cwl
id: invalid_syntax_v11_uses_v12_workflow
doc: test wf with v1.2 syntax marked as v1.1 (should fail)
should_fail: true
tags: [ workflow ]
- job: null
tool: invalid-wf-v12.cwl
id: invalid_syntax_mixed_v12_workflow
doc: |
test 1.2 wf that includes tools that are marked as v1.0 and v1.1 that
contain v1.2 features (should fail)
should_fail: true
tags: [ workflow ]