We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d72e64c commit 0a30c68Copy full SHA for 0a30c68
1 file changed
ci/run_single_test.sh
@@ -50,6 +50,11 @@ case ${TEST_TYPE} in
50
;;
51
docs)
52
nox -s docs
53
+ # Clean up built docs and python cache after the build process to avoid
54
+ # `[Errno 28] No space left on device`
55
+ # See https://github.com/googleapis/google-cloud-python/issues/12271
56
+ rm -rf docs/_build
57
+ find . | grep -E "(__pycache__)" | xargs rm -rf
58
retval=$?
59
60
docfx)
0 commit comments