File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -129,15 +129,15 @@ install = "uv sync --frozen --no-dev"
129129upgrade-install = " uv sync --frozen --no-dev --upgrade --refresh"
130130dev-install = " uv sync --dev --all-extras"
131131upgrade-dev-install = " uv sync --dev --all-extras --upgrade --refresh"
132- code-formatter = " ruff format uvtask tests"
133- "security-analysis:licenses" = " pip-licenses"
134- "security-analysis:vulnerabilities" = " bandit -r -c pyproject.toml uvtask tests"
135- "static-analysis:linter" = " ruff check uvtask tests"
136- "static-analysis:types" = " ty check uvtask tests"
137- unit-tests = " pytest tests/unit"
138- integration-tests = " pytest tests/integration"
139- functional-tests = " pytest -n1 tests/functional"
140- coverage = " pytest -n1 --cov --cov-report=html"
132+ code-formatter = " uv run ruff format uvtask tests"
133+ "security-analysis:licenses" = " uv run pip-licenses"
134+ "security-analysis:vulnerabilities" = " uv run bandit -r -c pyproject.toml uvtask tests"
135+ "static-analysis:linter" = " uv run ruff check uvtask tests"
136+ "static-analysis:types" = " uv run ty check uvtask tests"
137+ unit-tests = " uv run pytest tests/unit"
138+ integration-tests = " uv run pytest tests/integration"
139+ functional-tests = " uv run pytest -n1 tests/functional"
140+ coverage = " uv run pytest -n1 --cov --cov-report=html"
141141clean = """ python3 -c "
142142from glob import iglob
143143from shutil import rmtree
You can’t perform that action at this time.
0 commit comments