File tree Expand file tree Collapse file tree 2 files changed +23
-12
lines changed Expand file tree Collapse file tree 2 files changed +23
-12
lines changed Original file line number Diff line number Diff line change
1
+ # # IDE
2
+ .idea /
3
+ .vscode /
4
+
5
+ # # Python
6
+ * .py [cod ]
7
+ * .egg [s ]
8
+ * .egg-info
9
+ * egg [s ]
10
+ __pycache__
11
+ .python_history
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
func () {
4
- helpmessage=$( cat)
4
+ helpmessage=$( cat)
5
5
}
6
6
func << EOF
7
7
$( basename " $0 " ) : Run common workflow tool description language conformance tests.
64
64
-n* )
65
65
TEST_n=$arg
66
66
;;
67
- -N* )
68
- TEST_N=$arg
69
- ;;
67
+ -N* )
68
+ TEST_N=$arg
69
+ ;;
70
70
-s* )
71
71
TEST_s=$arg
72
72
;;
73
- -S* )
74
- TEST_S=$arg
75
- ;;
73
+ -S* )
74
+ TEST_S=$arg
75
+ ;;
76
76
-j* )
77
77
TEST_J=$arg
78
78
;;
@@ -150,10 +150,10 @@ runtest() {
150
150
151
151
runs=$(( runs+ 1 ))
152
152
(COMMAND=" cwltest --tool $1 \
153
- --test=conformance_tests.yaml ${CLASS} \
154
- ${TEST_n} ${TEST_N} ${TEST_s} ${TEST_S} \
155
- ${VERBOSE} ${TEST_L} ${TEST_J} ${ONLY_TOOLS} ${JUNIT_XML} \
156
- ${TIMEOUT} ${BADGE} ${TAGS} -- ${EXTRA} "
153
+ --test=conformance_tests.yaml ${CLASS} \
154
+ ${TEST_n} ${TEST_N} ${TEST_s} ${TEST_S} \
155
+ ${VERBOSE} ${TEST_L} ${TEST_J} ${ONLY_TOOLS} ${JUNIT_XML} \
156
+ ${TIMEOUT} ${BADGE} ${TAGS} -- ${EXTRA} "
157
157
if [ " $VERBOSE " = " --verbose" ]; then echo " ${COMMAND} " ; fi
158
158
${COMMAND}
159
159
) || failures=$(( failures+ 1 ))
@@ -162,7 +162,7 @@ runtest() {
162
162
if [ " $PLATFORM " = " Linux" ]; then
163
163
runtest " $( readlink -f " $runner " ) "
164
164
elif [ " $PLATFORM " = " Darwin" ]; then
165
- runtest $runner
165
+ runtest $runner
166
166
else
167
167
runtest " $( greadlink -f " $runner " ) "
168
168
fi
You can’t perform that action at this time.
0 commit comments