mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +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
|
#!/usr/bin/python
|
||||||
|
import sys
|
||||||
|
import os.path
|
||||||
|
|
||||||
|
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
||||||
|
|
||||||
|
|
||||||
def main(opts):
|
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
|
commands = nosetests -v tests/integration --with-coverage --cover-package=bootstrapvz --cover-inclusive
|
||||||
|
|
||||||
[testenv:docs]
|
[testenv:docs]
|
||||||
|
changedir = docs
|
||||||
deps =
|
deps =
|
||||||
sphinx
|
sphinx
|
||||||
commands =
|
commands =
|
||||||
./taskoverview.py --output docs/_static/graph.json
|
./taskoverview.py --output _static/graph.json
|
||||||
sphinx-build -W -b html -d docs/_build/html/doctrees docs docs/_build/html
|
sphinx-build -W -b html -d _build/html/doctrees . _build/html
|
||||||
|
|
||||||
[testenv:docs-serve]
|
[testenv:docs-serve]
|
||||||
changedir = docs/_build/html
|
changedir = docs/_build/html
|
||||||
|
|
Loading…
Add table
Reference in a new issue