Skip to content

Commit 916981d

Browse files
committed
fix: Remove 'uv run' prefix from CI commands to use system-installed packages
- Changed from 'uv run pytest' to 'pytest' to use --system installed packages - Changed from 'uv run ruff/black/mypy' to direct commands - Fixes pytest-cov not being recognized in CI environment - System packages are already installed via 'uv pip install --system -e .[dev]'
1 parent 54c337e commit 916981d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,27 +30,27 @@ jobs:
3030
3131
- name: Run ruff (lint)
3232
run: |
33-
uv run ruff check src/ tests/
33+
ruff check src/ tests/
3434
continue-on-error: true
3535

3636
- name: Run ruff (format check)
3737
run: |
38-
uv run ruff format --check src/ tests/
38+
ruff format --check src/ tests/
3939
continue-on-error: true
4040

4141
- name: Run black (format check)
4242
run: |
43-
uv run black --check src/ tests/
43+
black --check src/ tests/
4444
continue-on-error: true
4545

4646
- name: Run mypy (type check)
4747
run: |
48-
uv run mypy src/
48+
mypy src/
4949
continue-on-error: true
5050

5151
- name: Run tests with coverage
5252
run: |
53-
uv run pytest tests/ -v --cov=testiq --cov-report=xml --cov-report=json --cov-report=term
53+
pytest tests/ -v --cov=testiq --cov-report=xml --cov-report=json --cov-report=term
5454
5555
- name: Upload coverage to Codecov
5656
uses: codecov/codecov-action@v4

0 commit comments

Comments
 (0)