File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ baseCommand: node
4
4
hints :
5
5
- class: DockerRequirement
6
6
dockerPull: node:slim
7
- baseCommand : node
8
7
inputs :
9
8
- id : src
10
9
type : File
Original file line number Diff line number Diff line change 14
14
DRAFT=draft-3
15
15
TEST_N=" "
16
16
RUNNER=cwl-runner
17
- PLATFORM=` uname -s`
17
+ PLATFORM=$( uname -s)
18
+ COVERAGE=" python"
18
19
19
20
while [[ -n " $1 " ]]
20
21
do
@@ -63,7 +64,9 @@ runtest() {
63
64
64
65
runs=$(( runs+ 1 ))
65
66
(cd $DRAFT
66
- python -mcwltool.cwltest --tool " $1 " --test=conformance_test_$DRAFT .yaml $TEST_N $TEST_L $ONLY_TOOLS --basedir $DRAFT
67
+ ${COVERAGE} -m cwltool.cwltest --tool " $1 " \
68
+ --test=conformance_test_${DRAFT} .yaml ${TEST_N} \
69
+ ${TEST_L} ${ONLY_TOOLS} --basedir ${DRAFT}
67
70
)
68
71
checkexit
69
72
}
You can’t perform that action at this time.
0 commit comments