diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2022-03-25 10:10:13 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2022-04-23 10:20:22 +0200 |
commit | 50a4e308307178d053066733371f35de8d25d49f (patch) | |
tree | 1014a63c2a789a51914dbfd8ca5e7c3f9c6aedac /Makefile | |
parent | a8651305399a256871da875b66b6a661d80ef07a (diff) | |
download | searxng-50a4e308307178d053066733371f35de8d25d49f.tar.gz searxng-50a4e308307178d053066733371f35de8d25d49f.zip |
[mod] add test.pybabel to cover issues in translation tasks
We need to cover issue related to pybabel/translation tasks. By example there
was an issue [1] (fixed [2]) when upgrading jinja2 from 3.0.3 to 3.1.0 [3] that
has not been covered by the CI tests.
[1] https://github.com/searxng/searxng/runs/5688624325?check_suite_focus=true#step:6:348
[2] https://github.com/searxng/searxng/pull/1011
[3] https://github.com/searxng/searxng/pull/1008
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -50,7 +50,7 @@ search.checker.%: install $(Q)./manage pyenv.cmd searx-checker -v "$(subst _, ,$(patsubst search.checker.%,%,$@))" PHONY += test ci.test test.shell -ci.test: test.yamllint test.black test.pyright test.pylint test.unit test.robot test.rst +ci.test: test.yamllint test.black test.pyright test.pylint test.unit test.robot test.rst test.pybabel test: test.yamllint test.black test.pyright test.pylint test.unit test.robot test.rst test.shell test.shell: $(Q)shellcheck -x -s dash \ @@ -86,7 +86,7 @@ MANAGE += py.build py.clean MANAGE += pyenv pyenv.install pyenv.uninstall MANAGE += pypi.upload pypi.upload.test MANAGE += format.python -MANAGE += test.yamllint test.pylint test.pyright test.black test.unit test.coverage test.robot test.rst test.clean +MANAGE += test.yamllint test.pylint test.pyright test.black test.pybabel test.unit test.coverage test.robot test.rst test.clean MANAGE += themes.all themes.oscar themes.simple themes.simple.test pygments.less MANAGE += static.build.commit static.build.drop static.build.restore MANAGE += nvm.install nvm.clean nvm.status nvm.nodejs |