未验证 提交 1ac86850 编写于 作者: C Cleber Rosa

Merge remote-tracking branch 'ldoktor/verbose-lint'

Signed-off-by: NCleber Rosa <crosa@redhat.com>
......@@ -79,7 +79,11 @@ results_dir_content() {
}
[ "$SKIP_RESULTSDIR_CHECK" ] || RESULTS_DIR_CONTENT="$(ls $RESULTS_DIR 2> /dev/null)"
run_rc lint 'inspekt --exclude=.git lint'
if [ "$TRAVIS" == "true" ]; then
run_rc lint 'RESULT=$(mktemp); inspekt --exclude=.git lint &>$RESULT || { cat $RESULT; rm $RESULT; exit -1; }; rm $RESULT'
else
run_rc lint 'inspekt --exclude=.git lint'
fi
run_rc indent 'inspekt --exclude=.git indent'
run_rc style 'inspekt --exclude=.git style --disable E501,E265,W601,E402,E722'
run_rc boundaries 'selftests/modules_boundaries'
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册