aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2021-01-05 15:33:30 -0800
committerBryan Newbold <bnewbold@archive.org>2021-01-05 15:33:30 -0800
commit24d7059f5637f6d9cd32f5fc9717985ab40276ba (patch)
tree0211ecfaa64be820e66c3c3002493f738ba9a723 /Makefile
parent6a7bc99dce9f19fb5a9a6d14f453fdb1b7f93fc6 (diff)
downloadfatcat-scholar-24d7059f5637f6d9cd32f5fc9717985ab40276ba.tar.gz
fatcat-scholar-24d7059f5637f6d9cd32f5fc9717985ab40276ba.zip
Makefile: don't run lints during default test run
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
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