File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
google-cloud-kms/tests/unit
google-cloud-storage/tests/unit Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -60,12 +60,13 @@ jobs:
6060 cache-dependency-glob : " packages/${{ matrix.package }}/setup.py"
6161
6262 - name : Execute Tests (High-Density)
63- # uvx downloads and runs nox in milliseconds without a global pip install
6463 run : |
6564 cd packages/${{ matrix.package }}
6665
67- # Force nox to use uv as its backend for lightning-fast venv creation
68- export VIRTUALENV_CREATOR =uv
66+ # Force Nox to natively use uv instead of the legacy virtualenv module
67+ export NOX_DEFAULT_VENV_BACKEND =uv
6968
7069 echo "Running targeted tests for ${{ matrix.package }} on Python ${{ matrix.python }}"
71- uvx nox -s unit-${{ matrix.python }}
70+
71+ # Use uvx to run nox (with the uv plugin injected to guarantee compatibility)
72+ uvx --with 'nox[uv]' nox -s unit-${{ matrix.python }}
Original file line number Diff line number Diff line change 1+ # CI Prototype Verification
Original file line number Diff line number Diff line change 1+ # CI Prototype Verification
You can’t perform that action at this time.
0 commit comments