tox.ini
author Denis Laxalde <denis.laxalde@logilab.fr>
Wed, 08 Jul 2015 09:37:06 +0200
changeset 10518 d276e4b332ba
parent 10512 99bdd4bddd77
child 10544 cb2c9746341d
permissions -rw-r--r--
[tox] Update doc testenv to account for documentation restructuring * Build doc from `doc` directory. * Use `sphinx-build` directly instead of `make` as this now works and allows to build within .tox temporary environment (instead of doc/_build), preferable for a "test" action. Related to #5447161.

[tox]
env = py27

[testenv]
sitepackages = True
setenv =
  PATH=/usr/lib/postgresql/9.4/bin:$PATH
commands = pytest -t {envname}/test {posargs}

[testenv:cubicweb]
deps =
  -r{toxinidir}/test/requirements.txt
commands = pytest -t test {posargs}

[testenv:dataimport]

[testenv:devtools]
deps =
  -r{toxinidir}/devtools/test/requirements.txt

[testenv:entities]
deps =
  -r{toxinidir}/entities/test/requirements.txt

[testenv:etwist]
deps =
  -r{toxinidir}/etwist/test/requirements.txt

[testenv:ext]
deps =
  -r{toxinidir}/ext/test/requirements.txt

[testenv:hooks]

[testenv:server]
deps =
  -r{toxinidir}/server/test/requirements.txt

[testenv:sobjects]
deps =
  -r{toxinidir}/sobjects/test/requirements.txt

[testenv:web]
deps =
  -r{toxinidir}/web/test/requirements.txt

[testenv:wsgi]

[testenv:doc]
changedir = doc
whitelist_externals =
  sphinx-build
deps =
  sphinx
commands = sphinx-build -b html -d {envtmpdir}/doctrees .  {envtmpdir}/html