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 2682219 commit 44faf9dCopy full SHA for 44faf9d
1 file changed
.github/workflows/testing.yml
@@ -14,8 +14,8 @@ jobs:
14
cache: true # enable caching of installed envs
15
# only write new caches on main pushes (optional)
16
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
17
- # ensure the 'test' environment(s) are installed
18
- environments: test
+ # ensure the 'tests' environment(s) are installed
+ environments: tests
19
# don't activate env (we'll call pixi run -e test explicitly)
20
activate-environment: false
21
# prefer using existing lockfile if present (faster, deterministic)
@@ -24,4 +24,4 @@ jobs:
24
- name: Verify pixi and run tests
25
run: |
26
pixi --version
27
- pixi run -e test pytest
+ pixi run -e tests tests -v
0 commit comments