clean up poe config

This commit is contained in:
Jonathan Wren 2022-10-30 12:20:42 -07:00
parent 13f12dbe19
commit 4e68644f91
No known key found for this signature in database

View file

@ -83,17 +83,21 @@ test-run = [
] ]
# Groups of tasks # Groups of tasks
format = [ format.default_item_type = "cmd"
{cmd = "isort ."}, format.sequence = [
{cmd = "black ."}, "isort .",
"black .",
] ]
lint = [
{cmd = "poetry --version"}, lint.default_item_type = "cmd"
{cmd = "poetry check"}, lint.sequence = [
{cmd = "flakeheaven --version"}, "poetry --version",
{cmd = "flakeheaven plugins"}, "poetry check",
{cmd = "flakeheaven lint"}, "flakeheaven --version",
"flakeheaven plugins",
"flakeheaven lint",
] ]
test = [ test = [
"lint", "lint",
"test-run", "test-run",