Skip to content

Commit 2f24230

Browse files
committed
chore(ci): update CI workflow to exclude dev dependencies
- Add --no-dev flag to mypy and pytest commands - Ensure static checks and tests run without development dependencies - Maintain existing coverage upload step
1 parent 9b8e704 commit 2f24230

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,10 @@ jobs:
8383
uses: astral-sh/ruff-action@v3
8484

8585
- name: Static check with mypy
86-
run: uv run mypy
86+
run: uv run --no-dev mypy
8787

8888
- name: Run tests
89-
run: uv run pytest -x --cov --cov-report=xml
89+
run: uv run --no-dev pytest -x --cov --cov-report=xml
9090

9191
- name: Upload coverage to Codecov
9292
uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)