@@ -29,14 +29,6 @@ uv sync --dev
2929echo "✅ Project setup complete!"
3030"""
3131
32- [tasks ."format:ruff" ]
33- description = " Format code with ruff"
34- run = " uv run ruff format ."
35-
36- [tasks ."format:ssort" ]
37- description = " Format code with ssort"
38- run = " uv run ssort ."
39-
4032[tasks .format ]
4133 run = " dprint fmt"
4234
@@ -74,21 +66,21 @@ echo "✅ Project setup complete!"
7466
7567[tasks .test ]
7668 description = " Run tests with pytest"
77- run = " uv run pytest -q "
69+ run = " uv run pytest"
7870
79- [tasks .test- verbose ]
71+ [tasks ." test: verbose" ]
8072 description = " Run tests with verbose output"
8173 run = " uv run pytest -vv"
8274
83- [tasks .test- cov ]
75+ [tasks ." test: cov" ]
8476 description = " Run tests with coverage"
8577 run = " uv run pytest --cov=core --cov=apps --cov=storage --cov-report=term-missing"
8678
87- [tasks .test- unit ]
79+ [tasks ." test: unit" ]
8880 description = " Run unit tests only"
8981 run = " uv run pytest -m unit"
9082
91- [tasks .test- integration ]
83+ [tasks ." test: integration" ]
9284 description = " Run integration tests only"
9385 run = " uv run pytest -m integration"
9486
@@ -110,6 +102,7 @@ rm -rf htmlcov/
110102rm -rf .mypy_cache/
111103find . -type d -name __pycache__ -exec rm -rf {} + 2>/dev/null || true
112104find . -type f -name "*.pyc" -delete
105+ uv clean
113106echo "✅ Cleaned project artifacts"
114107"""
115108
@@ -118,4 +111,4 @@ echo "✅ Cleaned project artifacts"
118111 run = " uv build"
119112
120113[tasks .cli ]
121- run = " uv run trader- cli"
114+ run = " uv run cli"
0 commit comments