File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -49,10 +49,10 @@ benchmarks: ## Run benchmarks
4949 uv run python -m pytest -vv tests/benchmarks/
5050
5151check-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/ dev-tools/
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/
5353
5454security-check : # # Check the project for security issues
55- uv run bandit -c pyproject.toml -r src tests dev-tools
55+ uv run bandit -c pyproject.toml -r src tests
5656
5757format : # # Format the code into unified format
5858 uv run black .
@@ -102,13 +102,13 @@ black: ## Check source code using Black code formatter
102102 uv run black --check .
103103
104104pylint : # # Check source code using Pylint static code analyser
105- uv run pylint src tests dev-tools
105+ uv run pylint src tests
106106
107107pyright : # # Check source code using Pyright static type checker
108- uv run pyright src dev-tools
108+ uv run pyright src
109109
110110docstyle : # # Check the docstring style using Docstyle checker
111- uv run pydocstyle -v src dev-tools
111+ uv run pydocstyle -v src
112112
113113ruff : # # Check source code using Ruff linter
114114 uv run ruff check . --per-file-ignores=tests/* :S101 --per-file-ignores=scripts/* :S101
You can’t perform that action at this time.
0 commit comments