Skip to content

Commit db1f47f

Browse files
committed
fix: need to specify dev env? + explicit install step
1 parent 02f034d commit db1f47f

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: prefix-dev/setup-pixi@v0
1818

1919
- name: Check formatting
20-
run: pixi run format --check .
20+
run: pixi run --environment quality format --check .
2121

2222
linting:
2323
runs-on: ubuntu-latest
@@ -29,7 +29,7 @@ jobs:
2929
uses: prefix-dev/setup-pixi@v0
3030

3131
- name: Check code
32-
run: pixi run lint
32+
run: pixi run --environment quality lint
3333

3434
testing:
3535
runs-on: ubuntu-latest
@@ -49,8 +49,11 @@ jobs:
4949
- name: Setup pixi
5050
uses: prefix-dev/setup-pixi@v0
5151

52+
- name: Install package for plugin discovery
53+
run: pixi run --environment dev python -m pip install -e .
54+
5255
- name: Run pytest
53-
run: pixi run test
56+
run: pixi run --environment dev test
5457

5558
- name: Run Coverage
56-
run: pixi run coverage-report
59+
run: pixi run --environment dev coverage-report

0 commit comments

Comments
 (0)