fix: correct CI workflow paths for depcheck project
Some checks failed
CI / test (push) Successful in 11s
CI / lint (push) Successful in 6s
CI / type-check (push) Failing after 9s

This commit is contained in:
2026-02-04 15:09:17 +00:00
parent 926c86ea6f
commit 362a980510

View File

@@ -21,7 +21,7 @@ jobs:
pip install -e ".[test]"
- name: Run tests
run: PYTHONPATH=/app/src:$PYTHONPATH pytest tests/test_cli.py tests/test_recorder.py tests/test_snapshot.py tests/test_server.py -v --tb=short
run: PYTHONPATH=/app/src:$PYTHONPATH pytest tests/unit/ tests/integration/ -v --tb=short
lint:
runs-on: ubuntu-latest
@@ -36,7 +36,7 @@ jobs:
run: pip install ruff>=0.1.0
- name: Run ruff linter
run: ruff check api_snapshot/ tests/test_cli.py tests/test_recorder.py tests/test_snapshot.py tests/test_server.py
run: ruff check src/depcheck/
type-check:
runs-on: ubuntu-latest
@@ -51,4 +51,4 @@ jobs:
run: pip install mypy>=1.0.0
- name: Run mypy type checker
run: mypy api_snapshot/ --ignore-missing-imports
run: mypy src/depcheck/ --ignore-missing-imports