19 lines
460 B
INI
19 lines
460 B
INI
[tox]
|
|
minversion = 1.6
|
|
skipsdist = True
|
|
envlist = bashate
|
|
|
|
[testenv:bashate]
|
|
deps = bashate>=0.2
|
|
whitelist_externals = bash
|
|
commands = bash -c "find {toxinidir} -type f -name '*.sh' -not -path '*/.tox/*' -print0 | xargs -0 bashate -v"
|
|
|
|
[testenv]
|
|
basepython = python2
|
|
deps = -r{toxinidir}/requirements.txt
|
|
usedevelop = False
|
|
commands =
|
|
jenkins-jobs --conf conf/jenkins_job.ini.example test jenkins/jobs -o {toxinidir}/output/{envname}
|
|
|
|
[testenv:nextgen-ci]
|