Skip to content
Merged
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
6 changes: 4 additions & 2 deletions ci/run_single_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ case ${TEST_TYPE} in
# `[Errno 28] No space left on device`
# See https://github.com/googleapis/google-cloud-python/issues/12271
rm -rf docs/_build
find . | grep -E "(__pycache__)" | xargs rm -rf
;;
docfx)
nox -s docfx
Expand All @@ -68,7 +67,6 @@ case ${TEST_TYPE} in
# `[Errno 28] No space left on device`
# See https://github.com/googleapis/google-cloud-python/issues/12271
rm -rf docs/_build
find . | grep -E "(__pycache__)" | xargs rm -rf
;;
prerelease)
nox -s prerelease_deps-3.12
Expand Down Expand Up @@ -105,4 +103,8 @@ case ${TEST_TYPE} in
esac
esac

# Clean up `__pycache__` directories to avoid error `No space left on device`
# seen when running tests in Github Actions
find . | grep -E "(__pycache__)" | xargs rm -rf

exit ${retval}