summaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2021-03-01 08:30:15 +0000
committerGerrit Code Review <gerrit@onap.org>2021-03-01 08:30:15 +0000
commit546f9f3083fffd266b416efee0d8e9ea4c49e1ef (patch)
treec4e95c96a1492b9b754ccce1d6934e7171fb8021 /tox.ini
parent80383d3d3037b1e57cd61310a09fb157e72f1d2f (diff)
parent11ce7f76b620bb632de91d4f57e103b90a8178f5 (diff)
Merge changes from topic "js-linter"honolulu
* changes: [IETF_ACTN_TOOLS] First upload of the Feature code of one of the ACTN tool chain in the new repo Setup JavaScript linter Add Tox setup for linters
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini52
1 files changed, 52 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..20b645e
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,52 @@
+[tox]
+minversion = 3.2.0
+envlist = json,yaml,py,md,js
+skipsdist = true
+requires = pip >= 20
+
+[testenv]
+basepython = python3
+whitelist_externals =
+ git
+ bash
+deps =
+ coala-bears
+ nodeenv
+
+[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) \ "
+
+[testenv:md]
+commands_pre =
+ nodeenv -p --verbose
+ npm install --global remark-cli
+ /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:js]
+commands_pre =
+ nodeenv -p --verbose
+ npm install --global jshint
+ /bin/sh -c "git --no-pager diff HEAD HEAD^ --name-only '*.js' > /tmp/.coalist_js"
+commands =
+ /bin/bash -c "coala --non-interactive --disable-caching --no-autoapply-warn -m MAJOR js --files $(</tmp/.coalist_js) \ "