15 lines
310 B
Makefile
15 lines
310 B
Makefile
.PHONY: lint wip test fix catalog
|
|
|
|
all: test
|
|
|
|
lint:
|
|
gherkin-lint
|
|
wip:
|
|
KAPOW_DEBUG_TESTS=1 pipenv run behave --stop --wip
|
|
test: lint
|
|
pipenv run behave --no-capture
|
|
fix: lint
|
|
KAPOW_DEBUG_TESTS=1 pipenv run behave --stop --no-capture
|
|
catalog:
|
|
pipenv run behave --format steps.usage --dry-run --no-summary -q
|