Skip to content

Commit 4c3a288

Browse files
committed
wip: test-parallel-execute-system-tests
1 parent 2a6aaff commit 4c3a288

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.kokoro/system-single.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,8 @@ NOX_FILE_ARG=""
3232

3333
[[ -z "${NOX_FILE}" ]] || NOX_FILE_ARG="-f ${NOX_FILE}"
3434

35-
python3 -m nox ${NOX_SESSION_ARG} $NOX_FILE_ARG
35+
# 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

Comments
 (0)