Skip to content

Commit e282e82

Browse files
committed
Fix test command.
1 parent c1fdaac commit e282e82

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: Run unit tests and doctests.
4242
shell: bash -l {0}
43-
run: pixi run -e test pytest -m "unit or (not integration and not end_to_end)" --cov=./ --cov-report=xml -n auto
43+
run: pixi run -e ${{ matrix.environment }} pytest -m "unit or (not integration and not end_to_end)" --cov=./ --cov-report=xml -n auto
4444

4545
- name: Upload unit test coverage reports to Codecov with GitHub Action
4646
uses: codecov/codecov-action@v4
@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: Run end-to-end tests.
5151
shell: bash -l {0}
52-
run: pixi run -e test pytest -m end_to_end --cov=./ --cov-report=xml -n auto
52+
run: pixi run -e ${{ matrix.environment }} pytest -m end_to_end --cov=./ --cov-report=xml -n auto
5353

5454
- name: Upload end_to_end test coverage reports to Codecov with GitHub Action
5555
uses: codecov/codecov-action@v4

.pre-commit-config.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,6 @@ repos:
5858
rev: v2.2.6
5959
hooks:
6060
- id: codespell
61-
- repo: https://github.com/mgedmin/check-manifest
62-
rev: "0.49"
63-
hooks:
64-
- id: check-manifest
65-
args: [--no-build-isolation]
66-
additional_dependencies: [setuptools-scm, toml, wheel]
6761
- repo: meta
6862
hooks:
6963
- id: check-hooks-apply

0 commit comments

Comments
 (0)