fix: correct CI workflow paths for depcheck project
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user