aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2021-11-30 14:02:28 -0800
committerBryan Newbold <bnewbold@archive.org>2021-11-30 14:02:28 -0800
commitdcfeaecd89ef8509a78a69443ad71cfe23b972c9 (patch)
tree8507bee34b695d70bf8e33e8ecb90047fe150455 /Makefile
parent1f3382703e86190efd11f74bce00d61f64c8b174 (diff)
downloadchocula-dcfeaecd89ef8509a78a69443ad71cfe23b972c9.tar.gz
chocula-dcfeaecd89ef8509a78a69443ad71cfe23b972c9.zip
make: don't run lint as part of test
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5614216..5b14370 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
+test: ## Run all tests
pipenv run pytest
.PHONY: coverage