From 3a3abcc93976976bfcf841da9faab8171aab77ff Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Mon, 16 Aug 2021 20:05:15 -0700 Subject: [PATCH] take out arg for old plugin from makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a4494ee3..b2e27f32 100644 --- a/Makefile +++ b/Makefile @@ -25,10 +25,10 @@ unit: # unit tests poetry run pytest tests/unit bdd: # bdd tests - poetry run pytest tests/bdd --gherkin-terminal-reporter --tb=native --diff-type=unified + poetry run pytest tests/bdd --gherkin-terminal-reporter --tb=native bdd-debug: # bdd tests - poetry run pytest tests/bdd --gherkin-terminal-reporter --tb=native --diff-type=unified -x -vv + poetry run pytest tests/bdd --gherkin-terminal-reporter --tb=native -x -vv test: lint unit bdd ## Run unit tests and behave tests