From f7a49d715e40d7919bb63c4ced2790e08010afd5 Mon Sep 17 00:00:00 2001 From: Micah Jerome Ellison Date: Sat, 27 Jun 2020 17:51:31 -0700 Subject: [PATCH] Make behave output more concise when running make test (#988) Make behave output more concise when running make test Co-authored-by: Jonathan Wren --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8c08adb4..1c8a52a6 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ lint: ## Check style with various tools test: lint ## Run unit tests and behave tests poetry run pytest - poetry run behave + poetry run behave --no-skipped --format progress2 build: poetry build