diff options
author | Devaev Maxim <[email protected]> | 2019-12-10 05:53:46 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2019-12-10 05:53:46 +0300 |
commit | 6c385327ffc313856b2b9cdca04cdc2e4f8c13d6 (patch) | |
tree | a53e5534edb7d2a994d13d29a887da8348227a82 | |
parent | f5a6fe35a99735c11eaad5d194061223bf9a0820 (diff) |
lint fix
-rw-r--r-- | testenv/tox.ini | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/testenv/tox.ini b/testenv/tox.ini index 044d3a70..0c0c9f29 100644 --- a/testenv/tox.ini +++ b/testenv/tox.ini @@ -10,15 +10,16 @@ changedir = /src [testenv:flake8] whitelist_externals = bash commands = bash -c 'flake8 --config=testenv/linters/flake8.ini kvmd testenv/tests *.py' +# FIXME: pyflakes from master to support walrus deps = + git+https://github.com/PyCQA/pyflakes@1911c20#egg=pyflakes flake8 flake8-quotes -rrequirements.txt [testenv:pylint] whitelist_externals = bash -commands = bash -c 'pylint --rcfile=testenv/linters/pylint.ini --output-format=colorized --reports=no kvmd testenv/tests genmap.py' -# TODO: return setup.py back. Now pylint is broken. Again. +commands = bash -c 'pylint --rcfile=testenv/linters/pylint.ini --output-format=colorized --reports=no kvmd testenv/tests *.py' deps = pylint pytest |