We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3db4872 commit c979b39Copy full SHA for c979b39
1 file changed
bin/mergedevbranch
@@ -193,6 +193,13 @@ G=$(svn st | cut -c 1-7 | grep -oh 'G' | head -n 1)
193
##cp cicmd/commit-${rev}-merge.sh merged@$rev/commit
194
##cd -
195
196
+# Potentially run flake8 at this point
197
+# read -p "Run flake8? [y/N] "
198
+# if [ "$REPLY" = "Y" -o "$REPLY" = "y"]; then
199
+# mod=$(svn st | cut -c 9- | grep '\.py$')
200
+# flake8 $mod | less
201
+# fi
202
+
203
read -p "Continue with tests? [Y/n] "
204
[ "$REPLY" = "Y" -o "$REPLY" = "y" -o "$REPLY" = "" ] || exit
205
0 commit comments