diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-01-05 15:33:30 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-01-05 15:33:30 -0800 |
commit | 24d7059f5637f6d9cd32f5fc9717985ab40276ba (patch) | |
tree | 0211ecfaa64be820e66c3c3002493f738ba9a723 | |
parent | 6a7bc99dce9f19fb5a9a6d14f453fdb1b7f93fc6 (diff) | |
download | fatcat-scholar-24d7059f5637f6d9cd32f5fc9717985ab40276ba.tar.gz fatcat-scholar-24d7059f5637f6d9cd32f5fc9717985ab40276ba.zip |
Makefile: don't run lints during default test run
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |