File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,21 +50,25 @@ case ${TEST_TYPE} in
5050 ;;
5151 docs)
5252 nox -s docs
53+ # This line needs to be directly after `nox -s docs` in order
54+ # for the failure to appear in Github presubmits
55+ retval=$?
5356 # Clean up built docs and python cache after the build process to avoid
5457 # `[Errno 28] No space left on device`
5558 # See https://github.com/googleapis/google-cloud-python/issues/12271
5659 rm -rf docs/_build
5760 find . | grep -E " (__pycache__)" | xargs rm -rf
58- retval=$?
5961 ;;
6062 docfx)
6163 nox -s docfx
64+ # This line needs to be directly after `nox -s docfx` in order
65+ # for the failure to appear in Github presubmits
66+ retval=$?
6267 # Clean up built docs and python cache after the build process to avoid
6368 # `[Errno 28] No space left on device`
6469 # See https://github.com/googleapis/google-cloud-python/issues/12271
6570 rm -rf docs/_build
6671 find . | grep -E " (__pycache__)" | xargs rm -rf
67- retval=$?
6872 ;;
6973 prerelease)
7074 nox -s prerelease_deps-3.12
You can’t perform that action at this time.
0 commit comments