There was an error while loading. Please reload this page.
1 parent 2a6aaff commit 4c3a288Copy full SHA for 4c3a288
1 file changed
.kokoro/system-single.sh
@@ -32,4 +32,8 @@ NOX_FILE_ARG=""
32
33
[[ -z "${NOX_FILE}" ]] || NOX_FILE_ARG="-f ${NOX_FILE}"
34
35
-python3 -m nox ${NOX_SESSION_ARG} $NOX_FILE_ARG
+# Install uv to completely eliminate the 1.5 hour disk I/O bottleneck
36
+python3 -m pip install -U "nox[uv]" > /dev/null 2>&1
37
+
38
+# Run nox using uv as the backend for 100x faster package installation
39
+python3 -m nox --force-venv-backend uv ${NOX_SESSION_ARG} $NOX_FILE_ARG
0 commit comments