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.
-l
1 parent 02117b9 commit 3932c51Copy full SHA for 3932c51
run_test.sh
@@ -128,7 +128,9 @@ if [ -n "${SELF}" ]; then
128
exit 0
129
fi
130
131
-if ! runner="$(command -v $RUNNER)" ; then
+if [ -n "${TEST_L}" ]; then
132
+ runner=$RUNNER
133
+elif ! runner="$(command -v $RUNNER)" ; then
134
echo >&2 "$helpmessage"
135
echo >&2
136
echo >&2 "runner '$RUNNER' not found"
@@ -139,9 +141,12 @@ runs=0
139
141
failures=0
140
142
143
runtest() {
- echo "--- Running CWL Conformance Tests $CWL_VER on $1 ---"
144
- "$1" --version
145
+ if [ -z "${TEST_L}" ]; then
146
+ echo "--- Running CWL Conformance Tests $CWL_VER on $1 ---"
147
+
148
+ "$1" --version
149
+ fi
150
151
runs=$((runs+1))
152
(COMMAND="cwltest --tool $1 \
0 commit comments