Skip to content
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