diff options
author | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2021-03-08 10:31:40 +0100 |
---|---|---|
committer | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2021-03-08 10:32:20 +0100 |
commit | 2f7418ace1ff799e0e77dd69bbfa099fc100c307 (patch) | |
tree | d69e595224c1976112e8ccd9993b92d6c3db1ff3 | |
parent | 00de18574f461717ded26f627e36012a1c59212a (diff) |
Setup Python linterhonolulu
Change-Id: I383b67ad14c72fc44796bede83090da314201331
Issue-ID: INT-1699
Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
-rw-r--r-- | .coafile | 12 | ||||
-rw-r--r-- | tox.ini | 8 |
2 files changed, 19 insertions, 1 deletions
@@ -15,3 +15,15 @@ ignore = bears = MarkdownBear ignore = .tox/** + +[py] +bears = PyLintBear +pylint_disable = all +pylint_enable = + bad-indentation, trailing-whitespace, unused-wildcard-import, unused-import, + unnecessary-semicolon, unnecessary-semicolon, undefined-variable, + syntax-error, unused-variable, using-constant-test,unused-argument, + len-as-condition, trailing-newlines, missing-final-newline, reimported, + too-many-function-args, singleton-comparison +ignore = + .tox/** @@ -1,6 +1,6 @@ [tox] minversion = 3.2.0 -envlist = json,yaml,md +envlist = json,yaml,md,py skipsdist = true requires = pip >= 8 @@ -36,3 +36,9 @@ commands_pre = /bin/sh -c "git --no-pager diff HEAD HEAD^ --name-only '*.md' > /tmp/.coalist_md" commands = /bin/bash -c "coala --non-interactive --disable-caching --no-autoapply-warn md --files $(</tmp/.coalist_md) \ " + +[testenv:py] +commands_pre = + /bin/sh -c "git --no-pager diff HEAD HEAD^ --name-only '*.py' > /tmp/.coalist_py" +commands = + /bin/bash -c "coala --non-interactive --disable-caching --no-autoapply-warn py --files $(</tmp/.coalist_py) \ " |