From 0db57cff7791bca64959af9e530ad4c5cfb1f2be Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 20 Oct 2020 11:10:50 -0700 Subject: settings/make: default dynaconf environment name Also override any .env value for dynaconf env when running tests or lint. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 7733f5c..a5c16b4 100644 --- a/Makefile +++ b/Makefile @@ -25,15 +25,15 @@ fmt: ## Run code formating on all source code .PHONY: test test: lint ## Run all tests and lints - ENV_FOR_DYNACONF=test pipenv run pytest + PIPENV_DONT_LOAD_ENV=1 ENV_FOR_DYNACONF=test pipenv run pytest .PHONY: coverage coverage: lint ## Run all tests with coverage - ENV_FOR_DYNACONF=test pipenv run pytest --cov + PIPENV_DONT_LOAD_ENV=1 ENV_FOR_DYNACONF=test pipenv run pytest --cov .PHONY: dev dev: ## Run web service locally, with reloading - ENV_FOR_DYNACONF=dev pipenv run uvicorn fatcat_scholar.web:app --reload --port 9819 + ENV_FOR_DYNACONF=development pipenv run uvicorn fatcat_scholar.web:app --reload --port 9819 .PHONY: dev-qa dev-qa: ## Run web service locally, with reloading, but point search queries to QA search index -- cgit v1.2.3