From c56dd7eb52f2281cca6ec7f44cdc9597cd1dc911 Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 18 Apr 2020 13:50:24 -0700 Subject: [PATCH] update makefile to match pipeline better --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 83b42ff5..8533dec8 100644 --- a/Makefile +++ b/Makefile @@ -17,10 +17,11 @@ format: ## Format files to match style poetry run black . lint: ## Check style with various tools - poetry run black --check --diff . + poetry check poetry run pyflakes . + poetry run black --check --diff . -test: ## Run behave tests +test: lint ## Run behave tests poetry run behave build: