From 996bfc1042ad5483cc79bb0c48d0df2867d8601c Mon Sep 17 00:00:00 2001 From: Mackenzie Zastrow Date: Fri, 12 Sep 2025 16:59:24 -0400 Subject: [PATCH 1/2] fix: Update prepare to use format instead of test-format `hatch run prepare` should prep all the files to ensure it's ready for a PR, so switch it to format files instead of testing the format. Otherwise it just quits with output of the files that need to be formatted --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cdf4e9063..8d79eb27d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -169,7 +169,7 @@ test = "hatch test {args}" test-integ = "hatch test tests_integ {args}" prepare = [ - "hatch run test-format", + "hatch run format", "hatch run test-lint", "hatch test --all" ] From e8ce4a363559da57f3145f5defd513ed1e0e7e34 Mon Sep 17 00:00:00 2001 From: Mackenzie Zastrow <3211021+zastrowm@users.noreply.github.com> Date: Thu, 18 Sep 2025 09:52:44 -0400 Subject: [PATCH 2/2] Update pyproject.toml Co-authored-by: Nick Clegg --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 8d79eb27d..0eef72432 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -170,6 +170,7 @@ test-integ = "hatch test tests_integ {args}" prepare = [ "hatch run format", + "hatch run lint", "hatch run test-lint", "hatch test --all" ]