Skip to content

Commit 62cb653

Browse files
author
Peter Amstutz
committed
Fix override test for stable v1.1
1 parent ef6d5fc commit 62cb653

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

tests/override/env-tool_v1.1.cwl

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env cwl-runner
2+
class: CommandLineTool
3+
cwlVersion: v1.1
4+
inputs:
5+
in: string
6+
outputs:
7+
value: string
8+
9+
baseCommand: ["/bin/bash", "-c", 'echo {\"value\": \"$TEST_ENV\"}']
10+
11+
stdout: cwl.output.json

tests/test_override.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
get_data('tests/override/echo-job.yml')],
4545
{"out": "zing hello6\n"}
4646
),
47-
(["--enable-dev", get_data('tests/override/env-tool_v1.1.0-dev1.cwl'),
47+
([get_data('tests/override/env-tool_v1.1.cwl'),
4848
get_data('tests/override/env-tool_cwl-requirement_override.yaml')],
4949
{"value": "hello test env"}
5050
),

0 commit comments

Comments
 (0)