summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2021-05-27 21:22:00 +0200
committerMarkus Heiser <markus.heiser@darmarit.de>2021-06-05 17:41:24 +0200
commit393c06f537f01bbd35f08beb12ea802c63d8a559 (patch)
tree032d77bbbbab03c7abd5f71f33bcc487e24faaa8 /Makefile
parentfb6dd416e5d3609037d04e58d34fc375c450c4d5 (diff)
downloadsearxng-393c06f537f01bbd35f08beb12ea802c63d8a559.tar.gz
searxng-393c06f537f01bbd35f08beb12ea802c63d8a559.zip
[enh] add test.yamllint - lint yaml files
Usage:: make test.yamllint ./manage test.yamllint test.yamllint is also added to the `test` makefile target. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index c2c9cf49e..3e3df3292 100644
--- a/Makefile
+++ b/Makefile
@@ -51,8 +51,8 @@ search.checker.%: install
$(Q)./manage pyenv.cmd searx-checker -v "$(subst _, ,$(patsubst search.checker.%,%,$@))"
PHONY += test ci.test test.shell
-ci.test: test.pep8 test.pylint test.unit test.robot
-test: test.pep8 test.pylint test.unit test.robot test.shell
+ci.test: test.yamllint test.pep8 test.pylint test.unit test.robot
+test: test.yamllint test.pep8 test.pylint test.unit test.robot test.shell
test.shell:
$(Q)shellcheck -x -s dash \
dockerfiles/docker-entrypoint.sh
@@ -81,7 +81,7 @@ MANAGE += node.env node.clean
MANAGE += py.build py.clean
MANAGE += pyenv pyenv.install pyenv.uninstall
MANAGE += pypi.upload pypi.upload.test
-MANAGE += test.pylint test.pep8 test.unit test.coverage test.robot test.clean
+MANAGE += test.yamllint test.pylint test.pep8 test.unit test.coverage test.robot test.clean
MANAGE += themes.all themes.oscar themes.simple themes.bootstrap
PHONY += $(MANAGE)