Skip to content

Commit 1c38795

Browse files
committed
wip
1 parent c57affa commit 1c38795

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.kokoro/system-single.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ for attempt in 1 2 3; do
1717
echo "Execution attempt $attempt of 3..."
1818
echo "============================================"
1919

20-
if uvx --with 'nox[uv]' nox ${NOX_SESSION_ARG} ${NOX_FILE_ARG}; then
21-
echo "Tests passed successfully!"
22-
exit 0
20+
# Use the installed nox directly with the uv backend
21+
if nox --backend uv ${NOX_SESSION_ARG} ${NOX_FILE_ARG}; then
22+
echo "Tests passed successfully!"
23+
exit 0
2324
fi
2425

2526
if [[ $attempt -lt 3 ]]; then

.kokoro/system.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ git config --global --add safe.directory $(realpath .)
1313
# HOISTED: Install uv exactly once globally before we fan out
1414
echo "Installing uv globally..."
1515
python3 -m pip install uv
16+
# Pre-install nox and the uv plugin so background jobs don't fight over locks
17+
python3 -m pip install nox nox-uv
1618

1719
# --- NEW: Set maximum concurrent jobs ---
1820
MAX_CONCURRENT=4

0 commit comments

Comments
 (0)