aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2020-12-28 23:06:54 -0800
committerBryan Newbold <bnewbold@archive.org>2020-12-28 23:06:54 -0800
commitda5e9048d38b93b7314d37d3995c9abc45e6c69f (patch)
tree6e1a68e438c968f761f6d78a9ae6935d7d7880af
parenta1cf127f3412f406ff34539b3af86b3b0d06f213 (diff)
downloadchocula-da5e9048d38b93b7314d37d3995c9abc45e6c69f.tar.gz
chocula-da5e9048d38b93b7314d37d3995c9abc45e6c69f.zip
makefile: 'test' does not run 'lint' (doc fix)
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ef8354b..6d97255 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ fmt: ## Run code formating on all source code
pipenv run black *.py chocula/ tests/
.PHONY: test
-test: lint ## Run all tests and lints
+test: lint ## Run all tests
pipenv run pytest
.PHONY: coverage