diff options
author | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2020-07-29 15:33:27 +0200 |
---|---|---|
committer | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2020-07-29 15:33:27 +0200 |
commit | 2173fd4f1721ccf1ca88c80ee525838e8e04ae8c (patch) | |
tree | dd00aca21074e873ec7b11acb6091b0febf7a752 | |
parent | 8370ac160a97b856a994c4a0b8a178675df195a1 (diff) |
Add Tox and Coala setup for Python linter
Change-Id: Ic2e16c14f13c244f77c16fa5f38349f4549603a3
Issue-ID: INT-1666
Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
-rw-r--r-- | .coafile | 11 | ||||
-rw-r--r-- | tox.ini | 19 |
2 files changed, 30 insertions, 0 deletions
diff --git a/.coafile b/.coafile new file mode 100644 index 00000000..3e55d459 --- /dev/null +++ b/.coafile @@ -0,0 +1,11 @@ +[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/** diff --git a/tox.ini b/tox.ini new file mode 100644 index 00000000..8237e045 --- /dev/null +++ b/tox.ini @@ -0,0 +1,19 @@ +[tox] +minversion = 3.2.0 +envlist = py +skipsdist = true +requires = pip >= 8 + +[testenv] +basepython = python3 +whitelist_externals = + git + bash +deps = + coala-bears + +[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) \ " |