2014-08-20 12:49:32 -07:00
|
|
|
[tox]
|
|
|
|
minversion = 1.6
|
|
|
|
skipsdist = True
|
|
|
|
envlist = bashate
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
usedevelop = False
|
|
|
|
install_command = pip install {opts} {packages}
|
|
|
|
|
|
|
|
[testenv:bashate]
|
|
|
|
deps = bashate
|
|
|
|
whitelist_externals = bash
|
2014-10-16 13:15:51 +11:00
|
|
|
commands = bash -c "find {toxinidir} \
|
|
|
|
-not \( -type d -name .?\* -prune \) \ # prune all 'dot' dirs
|
|
|
|
-not \( -type d -name doc -prune \) \ # skip documentation
|
|
|
|
-type f \ # only files
|
|
|
|
-not -name \*~ \ # skip editors, readme, etc
|
|
|
|
-not -name \*.md \
|
|
|
|
\( \
|
|
|
|
-name \*.sh -or \
|
|
|
|
-name \*rc -or \
|
|
|
|
-name functions\* -or \
|
|
|
|
-wholename \*/lib/\* \ # /lib files are shell, but
|
|
|
|
\) \ # have no extension
|
|
|
|
-print0 | xargs -0 bashate -v"
|
2014-09-08 13:47:06 -07:00
|
|
|
|
|
|
|
[testenv:docs]
|
2014-10-07 13:13:28 -07:00
|
|
|
deps =
|
|
|
|
Pygments
|
|
|
|
docutils
|
2014-10-21 11:40:08 -04:00
|
|
|
sphinx>=1.1.2,<1.2
|
|
|
|
pbr>=0.6,!=0.7,<1.0
|
|
|
|
oslosphinx
|
2014-10-07 13:13:28 -07:00
|
|
|
whitelist_externals = bash
|
|
|
|
setenv =
|
|
|
|
TOP_DIR={toxinidir}
|
|
|
|
INSTALL_SHOCCO=true
|
2014-10-21 11:40:08 -04:00
|
|
|
commands =
|
|
|
|
python setup.py build_sphinx
|
2014-11-17 12:45:09 -06:00
|
|
|
bash tools/build_docs.sh
|