Skip to content

Commit 182cf47

Browse files
committed
feat(*): improve cli, add hooks, add pipeline, improve docs
1 parent e3e9104 commit 182cf47

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -129,15 +129,15 @@ install = "uv sync --frozen --no-dev"
129129
upgrade-install = "uv sync --frozen --no-dev --upgrade --refresh"
130130
dev-install = "uv sync --dev --all-extras"
131131
upgrade-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"
141141
clean = """python3 -c "
142142
from glob import iglob
143143
from shutil import rmtree

0 commit comments

Comments
 (0)