File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -48,8 +48,13 @@ test-e2e-tagged-local: ## Same as test-e2e-tagged without script wrapper
4848benchmarks : # # Run benchmarks
4949 uv run python -m pytest -vv tests/benchmarks/
5050
51- check-types : # # Checks type hints in sources
52- uv run mypy --explicit-package-bases --disallow-untyped-calls --disallow-untyped-defs --disallow-incomplete-defs --ignore-missing-imports --disable-error-code attr-defined src/ tests/unit tests/integration tests/e2e/
51+ check-types-src : # # Check type hints in sources only
52+ uv run mypy --explicit-package-bases --disallow-untyped-calls --disallow-untyped-defs --disallow-incomplete-defs --ignore-missing-imports --disable-error-code attr-defined src/
53+
54+ check-types-tests : # # Check type hints in tests only
55+ uv run mypy --explicit-package-bases --disallow-untyped-calls --disallow-untyped-defs --disallow-incomplete-defs --ignore-missing-imports --disable-error-code attr-defined tests/unit tests/integration tests/e2e/
56+
57+ check-types : check-types-src check-types-tests # # Checks type hints in sources and tests
5358
5459security-check : # # Check the project for security issues
5560 uv run bandit -c pyproject.toml -r src tests
Original file line number Diff line number Diff line change @@ -837,6 +837,8 @@ test-e2e Run end to end tests for the service
837837test-e2e-local Run end to end tests for the service
838838benchmarks Run benchmarks
839839check-types Checks type hints in sources
840+ check-types-src Check type hints in sources only
841+ check-types-tests Check type hints in tests only
840842security-check Check the project for security issues
841843format Format the code into unified format
842844schema Generate OpenAPI schema file
You can’t perform that action at this time.
0 commit comments