HyukjinKwon commented on code in PR #42159:
URL: https://github.com/apache/spark/pull/42159#discussion_r1274833924
##########
dev/run-pip-tests:
##########
@@ -25,6 +25,15 @@ shopt -s nullglob
FWDIR="$(cd "$(dirname "$0")"/..; pwd)"
cd "$FWDIR"
+# Clean ignored/untracked files that do not need
+# for pip packaging test. Machines in GitHub Action do not have
+# enough space, see also SPARK-44557.
+if [[ -z "${GITHUB_ACTION}" ]]; then
+ git clean -d -f -x -e assembly
+fi
+
+du -sch .[!.]* * |sort -h
+
Review Comment:
```suggestion
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]