Move taskoverview exec into docs/

This commit is contained in:
Anders Ingemann 2015-04-11 15:16:18 +02:00
parent d06fbb4a2d
commit 73972e1b60
2 changed files with 7 additions and 2 deletions

View file

@ -1,4 +1,8 @@
#!/usr/bin/python
import sys
import os.path
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
def main(opts):

View file

@ -16,11 +16,12 @@ deps =
commands = nosetests -v tests/integration --with-coverage --cover-package=bootstrapvz --cover-inclusive
[testenv:docs]
changedir = docs
deps =
sphinx
commands =
./taskoverview.py --output docs/_static/graph.json
sphinx-build -W -b html -d docs/_build/html/doctrees docs docs/_build/html
./taskoverview.py --output _static/graph.json
sphinx-build -W -b html -d _build/html/doctrees . _build/html
[testenv:docs-serve]
changedir = docs/_build/html