aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini16
1 files changed, 15 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 4b84955..d60f800 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = pep8
+envlist = pep8,yamllint,bashate
skipsdist = true
[testenv]
@@ -10,3 +10,17 @@ deps =
[testenv:pep8]
basepython = python3
commands = flake8
+
+[testenv:yamllint]
+basepython = python3
+files =
+ INFO.yaml
+ tools
+commands =
+ yamllint -s {[testenv:yamllint]files}
+
+[testenv:bashate]
+basepython = python3
+files =
+ ci/build-cirv.sh
+commands = bashate -e E005,E006,E042,E043 {[testenv:bashate]files}