Skip to content

Commit 44faf9d

Browse files
committed
Fix github testing
1 parent 2682219 commit 44faf9d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/testing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
cache: true # enable caching of installed envs
1515
# only write new caches on main pushes (optional)
1616
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
17-
# ensure the 'test' environment(s) are installed
18-
environments: test
17+
# ensure the 'tests' environment(s) are installed
18+
environments: tests
1919
# don't activate env (we'll call pixi run -e test explicitly)
2020
activate-environment: false
2121
# prefer using existing lockfile if present (faster, deterministic)
@@ -24,4 +24,4 @@ jobs:
2424
- name: Verify pixi and run tests
2525
run: |
2626
pixi --version
27-
pixi run -e test pytest
27+
pixi run -e tests tests -v

0 commit comments

Comments
 (0)