File tree Expand file tree Collapse file tree 2 files changed +5
-12
lines changed
test_utils/test_utils/scripts Expand file tree Collapse file tree 2 files changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -112,17 +112,11 @@ def docs(session):
112112 session .install ("." )
113113 # Building the docs.
114114 run_args = [
115- "sphinx-build" ,
116- "-b" ,
117- "html" ,
118- "-d" ,
119- get_path ("docs" , "_build" , "doctrees" ),
120- "docs" ,
121- get_path ("docs" , "_build" , "html" ),
115+ "bash" ,
116+ "test_utils/test_utils/scripts/update_docs.sh" ,
122117 ]
123118 session .run (* run_args )
124119
125-
126120@nox .session (py = DEFAULT_INTERPRETER )
127121def doctest (session ):
128122 # Install all dependencies.
Original file line number Diff line number Diff line change 1616
1717set -ev
1818
19- GH_OWNER=' GoogleCloudPlatform '
20- GH_PROJECT_NAME=' google-cloud- python'
19+ GH_OWNER=' GoogleAPIs '
20+ GH_PROJECT_NAME=' python-ndb '
2121
2222DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
2323
2424# Function to build the docs.
2525function build_docs {
2626 rm -rf docs/_build/
27- rm -rf docs/bigquery/generated
2827 # -W -> warnings as errors
2928 # -T -> show full traceback on exception
3029 # -N -> no color
3130 sphinx-build \
32- -W - T -N \
31+ -T -N \
3332 -b html \
3433 -d docs/_build/doctrees \
3534 docs/ \
You can’t perform that action at this time.
0 commit comments