diff --git a/Makefile b/Makefile index 6c70f69..7cd5fbc 100644 --- a/Makefile +++ b/Makefile @@ -39,14 +39,14 @@ lint: ## check code style and formatting with flake8 test-unit: missing-conf ## run all unit tests ifndef FEATURE - -SETTINGS_PATH=$(SETTINGS_TEST) FLASK_APP=$(APP) pytest -m unit + SETTINGS_PATH=$(SETTINGS_TEST) FLASK_APP=$(APP) pytest -m unit else -SETTINGS_PATH=$(SETTINGS_TEST) FLASK_APP=$(APP) pytest -m 'unit and $(FEATURE)' endif test-integration: missing-conf ## run all integration tests ifndef FEATURE - -SETTINGS_PATH=$(SETTINGS_TEST) FLASK_APP=$(APP) pytest -m integration + SETTINGS_PATH=$(SETTINGS_TEST) FLASK_APP=$(APP) pytest -m integration else -SETTINGS_PATH=$(SETTINGS_TEST) FLASK_APP=$(APP) pytest -m 'integration and $(FEATURE)' endif