diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2020-02-25 08:56:34 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-25 08:56:34 +0100 |
| commit | 6a3ef5561ba48e287f0b9c03a0b6d2f13b703077 (patch) | |
| tree | 012ce893a81ab2d4c70c3c415ffdbde0fc6c0da6 /Makefile | |
| parent | 692c331b301926c04df3d09d7716aa4f719b0b34 (diff) | |
| parent | 8685d1b7d8681aacc97ebfb720569c68094fc39e (diff) | |
Merge pull request #1861 from return42/fix-prefs
fix serious bugs of the test procedure
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -72,9 +72,12 @@ $(GH_PAGES):: PHONY += test test.pylint test.pep8 test.unit test.robot +test: test.pylint test.pep8 test.unit test.robot + # TODO: balance linting with pylint -test: test.pep8 test.unit test.robot - - make pylint +test.pylint: pyenvinstall + $(call cmd,pylint,searx/preferences.py) + $(call cmd,pylint,searx/testing.py) test.pep8: pyenvinstall $(PY_ENV_ACT); ./manage.sh pep8_check |