mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
Move taskoverview exec into docs/
This commit is contained in:
parent
d06fbb4a2d
commit
73972e1b60
2 changed files with 7 additions and 2 deletions
|
@ -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):
|
5
tox.ini
5
tox.ini
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue