diff options
author | mrichomme <morgan.richomme@orange.com> | 2020-03-20 16:54:03 +0100 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2020-03-24 13:25:47 +0000 |
commit | ce2d1ddc232b9320807db53ebc2dbd1bd2462b13 (patch) | |
tree | 8f1b86210dabc1dfdcbb5e1722ff16ed524a0ed9 /tox.ini | |
parent | b0f72a95c0bf26814a65bf3ea8de0a48d5c2abcd (diff) |
Add tox setup for bbs usecase repository
Based on default config created by Bartek Grzybowski
for other integration repositories
Issue-ID: INT-1496
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Change-Id: If46e22c8d75fa2f8455f7a1d9472a9b151163afb
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 36 |
1 files changed, 36 insertions, 0 deletions
@@ -0,0 +1,36 @@ +[tox] +minversion = 3.2.0 +envlist = json,yaml,py +skipsdist = true +requires = pip >= 8 + +[testenv] +basepython = python3 +whitelist_externals = + git + bash +deps = + coala-bears + + +[testenv:json] +commands_pre = + /bin/sh -c "git --no-pager diff HEAD HEAD^ --name-only '*.json' > /tmp/.coalist_json" +commands = +# '\ ' at the end of command is needed for a case where above command returns empty list (it adds empty file +# parameter to '--files' opt + /bin/bash -c "coala --non-interactive --disable-caching --no-autoapply-warn json --files $(</tmp/.coalist_json) \ " + +[testenv:yaml] +commands_pre = + /bin/sh -c "git --no-pager diff HEAD HEAD^ --name-only '*.yaml' '*.yml' > /tmp/.coalist_yaml" +commands = +# '\ ' at the end of command is needed for a case where above command returns empty list (it adds empty file +# parameter to '--files' opt + /bin/bash -c "coala --non-interactive --disable-caching --no-autoapply-warn yaml --files $(</tmp/.coalist_yaml) \ " + +[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) \ " |