1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
[template] description = "pytest + ruff" env = "uv" # Run tests [tasks.test] run = "uvx pytest" # Build package [tasks.build] run = "uv build" # Format source files [tasks.format] run = "uvx ruff format ." # Run linter [tasks.lint] run = "uvx ruff check ."