Hervé Beraud 72667f4e7b bump tox to 3.1.1
Change-Id: I73576906f64cd76fde85c678e2a26e80f0efbe25
2020-02-10 18:14:19 +01:00

27 lines
829 B
INI

[tox]
minversion = 3.1.1
skipsdist = True
envlist = bashate
ignore_basepython_conflict = true
[testenv]
basepython = python3
usedevelop = False
[testenv:bashate]
deps = bashate
whitelist_externals = bash
commands = bash -c "find {toxinidir} \
-not \( -type d -name .?\* -prune \) \
-not \( -type d -name doc -prune \) \
-type f \
-not -name \*~ \
-not -name \*.md \
\( \
-name \*.sh -or \
-name \*rc -or \
-name functions\* -or \
-wholename \*/lib/\* \
\) \
-print0 | xargs -0 bashate -v -iE006"