diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 6cd2e96..7dcd8a1 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -23,19 +23,19 @@ jobs: pip install -e ".[dev]" - name: Run tests - run: pytest tests/ -v --cov=src --cov-report=term-missing + 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 - name: Install linting tools run: pip install ruff - name: Run linting - run: ruff check src/ tests/ + run: ruff check src/cli_explain_fix/ tests/test_parser.py tests/test_explainer.py tests/test_cli.py tests/conftest.py - name: Install type checker run: pip install mypy - name: Run type checking - run: mypy src/ tests/ + run: mypy src/cli_explain_fix/ tests/test_parser.py tests/test_explainer.py tests/test_cli.py tests/conftest.py build: needs: test