aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest13
1 files changed, 8 insertions, 5 deletions
diff --git a/test b/test
index 3621e27..29f3b2d 100755
--- a/test
+++ b/test
@@ -1,8 +1,10 @@
#!/bin/sh
+set -o xtrace
+
ret=0
-echo '-------------------- SHELLCHECK'
+# SHELLCHECK
shellcheck install || ret=$?
shellcheck test || ret=$?
shellcheck local/bin/* || ret=$?
@@ -11,11 +13,12 @@ shellcheck -s sh config/zsh/aliases.zsh || ret=$?
shellcheck -s sh -e SC2155 config/zsh/zprofile || ret=$?
shellcheck -s sh config/x11/xinitrc || ret=$?
-echo '-------------------- VINT'
-vint -s config/vim/vimrc config/vim/pluggins.vim || ret=$?
+# VINT
+vint -s config/vim/vimrc || ret=$?
+vint -s config/vim/pluggins.vim || ret=$?
-echo '-------------------- FLAKE8'
+# FLAKE8
flake8 --ignore F821,E501,W504,N816 config/qutebrowser/config.py || ret=$?
-flake8 --ignore W504 config/python/startup.py || ret=$?
+flake8 --ignore W504 config/python/startup.py || ret=$?
exit $ret