From 24d7059f5637f6d9cd32f5fc9717985ab40276ba Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 5 Jan 2021 15:33:30 -0800 Subject: Makefile: don't run lints during default test run --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f31ce7c..b83ddf3 100644 --- a/Makefile +++ b/Makefile @@ -24,11 +24,11 @@ fmt: ## Run code formating on all source code pipenv run black fatcat_scholar/ tests/ .PHONY: test -test: lint ## Run all tests and lints +test: ## Run all tests and lints PIPENV_DONT_LOAD_ENV=1 ENV_FOR_DYNACONF=test pipenv run pytest .PHONY: coverage -coverage: lint ## Run all tests with coverage +coverage: ## Run all tests with coverage PIPENV_DONT_LOAD_ENV=1 ENV_FOR_DYNACONF=test pipenv run pytest --cov --cov-report=term --cov-report=html .PHONY: serve -- cgit v1.2.3