We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 148c3a8 commit 0f99cbaCopy full SHA for 0f99cba
1 file changed
.github/workflows/unittest.yml
@@ -67,9 +67,13 @@ jobs:
67
# Only inject overrides if we are strictly on the 3.15 pre-release
68
# This is needed to speed up builds
69
if [ "${{ matrix.python }}" = "3.15" ]; then
70
- export NOX_FORCE_VENV_BACKEND="uv"
71
- export VIRTUALENV_SEEDER=""
72
- # Route uv cache to our persistent workspace directory
+ # Force Nox to use uv for 3.15 virtual environments
+ export NOXFLAGS="--default-venv-backend=uv"
+
73
+ # Tell uv it is allowed to use the pre-release 3.15 toolchain
74
+ export UV_PRERELEASE="allow"
75
76
+ # Route uv's wheel and environment cache to our persistent workspace directory
77
export UV_CACHE_DIR="${{ github.workspace }}/.uv-wheel-cache"
78
fi
79
ci/run_conditional_tests.sh
0 commit comments