From 55301c915a143070209e90fe282489b9f7fb7161 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: