Skip to content

Commit 2a29f08

Browse files
committed
test: dummy changes to verify CI fan-out
1 parent e2491f3 commit 2a29f08

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/experiment.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff 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 }}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# CI Prototype Verification
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# CI Prototype Verification

0 commit comments

Comments
 (0)