Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a 'docs-doc2dash' Tox target. #1702

Merged
merged 2 commits into from
Sep 26, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ pip-log.txt

# Built documentation
docs/_build
docs/_build_doc2dash

# Virtual environment
env/
Expand Down
Binary file added docs/_static/images/gcp-logo-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/_static/images/gcp-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,23 @@ deps =
sphinx_rtd_theme
passenv = {[testenv:system-tests]passenv} SPHINX_RELEASE READTHEDOCS

[testenv:docs-doc2dash]
setenv =
PYTHONPATH = {toxinidir}/_testing
basepython = {[testenv:docs]basepython}
commands =
sphinx-build -W -b html -d docs/_build_doc2dash/doctrees \
docs docs/_build_doc2dash/html
doc2dash -vv --force -n google-cloud-python \
-i docs/_static/images/gcp-logo-32x32.png -I index.html \
-u https://google-cloud-python.readthedocs.io/en/latest/ \
-d docs/_build_doc2dash/ docs/_build_doc2dash/html
deps =
{[testenv:docs]deps}
doc2dash
passenv =
{[testenv:docs]passenv}

[pep8]
exclude =
docs/conf.py,
Expand Down