We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d37ef31 commit 3a5061dCopy full SHA for 3a5061d
run_test.sh
@@ -13,6 +13,7 @@ EOF
13
14
DRAFT=v1.0
15
TEST_N=""
16
+JUNIT_XML=""
17
RUNNER=cwl-runner
18
PLATFORM=$(uname -s)
19
COVERAGE="python"
@@ -35,6 +36,9 @@ do
35
36
--only-tools)
37
ONLY_TOOLS=--only-tools
38
;;
39
+ --junit-xml=*)
40
+ JUNIT_XML=$arg
41
+ ;;
42
*=*)
43
eval $(echo $arg | cut -d= -f1)=\"$(echo $arg | cut -d= -f2-)\"
44
@@ -66,7 +70,7 @@ runtest() {
66
70
(cd $DRAFT
67
71
cwltest --tool "$1" \
68
72
--test=conformance_test_${DRAFT}.yaml ${TEST_N} \
69
- ${TEST_L} ${ONLY_TOOLS} --basedir ${DRAFT}
73
+ ${TEST_L} ${ONLY_TOOLS} ${JUNIT_XML} --basedir ${DRAFT}
74
)
75
checkexit
76
}
0 commit comments