From 564eea911469b36d868e6a4c9c961da5d596ac7e Mon Sep 17 00:00:00 2001 From: Jacob Fuss Date: Wed, 4 Sep 2019 09:29:42 -0700 Subject: [PATCH] chore: Run black --check on make pr --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3746f80bee..9d042790bd 100644 --- a/Makefile +++ b/Makefile @@ -34,5 +34,8 @@ dev: lint test black: black samcli/* tests/* +black-check: + black --check samcli/* tests/* + # Verifications to run before sending a pull request -pr: init dev \ No newline at end of file +pr: init dev black-check \ No newline at end of file