ci: specify exact test files to run
Some checks failed
CI / test (push) Failing after 11s
CI / lint (push) Failing after 4s
CI / typecheck (push) Failing after 4s
CI / build (push) Failing after 4m55s

This commit is contained in:
2026-01-30 23:57:13 +00:00
parent 4731f5f19a
commit a9244d99eb

View File

@@ -20,10 +20,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e "[dev]"
pip install -e ".[dev]"
- name: Run pytest
run: pytest -v --tb=short
run: pytest tests/test_parser.py tests/test_explainer.py tests/test_cli.py tests/conftest.py -v --cov=src/cli_explain_fix --cov-report=term-missing
lint:
runs-on: ubuntu-latest
@@ -39,7 +39,7 @@ jobs:
run: pip install ruff
- name: Run linting
run: ruff check src/cli_explain_fix/ tests/
run: ruff check src/cli_explain_fix/ tests/test_parser.py tests/test_explainer.py tests/test_cli.py tests/conftest.py
typecheck:
runs-on: ubuntu-latest
@@ -55,7 +55,7 @@ jobs:
run: pip install mypy
- name: Run type checking
run: mypy src/cli_explain_fix/ tests/
run: mypy src/cli_explain_fix/ tests/test_parser.py tests/test_explainer.py tests/test_cli.py tests/conftest.py
build:
runs-on: ubuntu-latest