update makefile to match pipeline better

This commit is contained in:
Jonathan Wren 2020-04-18 13:50:24 -07:00
parent 45216b976c
commit c56dd7eb52

View file

@ -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: