diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2020-01-08 18:09:36 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2020-01-08 18:09:36 +0100 |
commit | bdf392093af92da7d8fc4e32b68ff0716700522d (patch) | |
tree | e2ec39ab388e27e804a022bfee4a1438adfa226c /Makefile | |
parent | 22d05b3e596029738eba432e11015f8c03c85312 (diff) | |
download | searxng-bdf392093af92da7d8fc4e32b68ff0716700522d.tar.gz searxng-bdf392093af92da7d8fc4e32b68ff0716700522d.zip |
build requirements: add a shell script static analysis tool
ShellCheck: https://github.com/koalaman/shellcheck
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -70,12 +70,14 @@ $(GH_PAGES):: # test # ---- -PHONY += test test.pylint test.pep8 test.unit test.robot +PHONY += test test.sh test.pylint test.pep8 test.unit test.robot # TODO: balance linting with pylint -test: test.pep8 test.unit test.robot +test: test.pep8 test.unit test.sh test.robot - make pylint +test.sh: + test.pep8: pyenvinstall $(PY_ENV_ACT); ./manage.sh pep8_check |