We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73f1a2d commit e749c22Copy full SHA for e749c22
2 files changed
.gitignore
@@ -38,6 +38,7 @@ nosetests.xml
38
39
# Built documentation
40
docs/_build
41
+docs/_build_rtd
42
43
# Virtual environment
44
env/
tox.ini
@@ -42,6 +42,16 @@ deps =
Sphinx
passenv = {[testenv:system-tests]passenv} SPHINX_RELEASE READTHEDOCS LOCAL_RTD
45
+[testenv:docs-rtd]
46
+setenv =
47
+ LOCAL_RTD = True
48
+basepython = {[testenv:docs]basepython}
49
+commands =
50
+ python -c "import shutil; shutil.rmtree('docs/_build_rtd', ignore_errors=True)"
51
+ sphinx-build -W -b html -d docs/_build_rtd/doctrees docs docs/_build_rtd/html
52
+deps = {[testenv:docs]deps}
53
+passenv = {[testenv:docs]passenv}
54
+
55
[pep8]
56
exclude = gcloud/datastore/_datastore_v1_pb2.py,docs/conf.py
57
verbose = 1
0 commit comments