aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2020-12-28 23:34:51 -0800
committerBryan Newbold <bnewbold@archive.org>2021-01-05 17:50:47 -0800
commit8d64bf54aabaf7fd9411a0304e9455770cfba3a9 (patch)
treef2b2e42260c8e556cd007ec9f070dccd2778e415 /python
parenta94fd2c5ed82d1373a0fd83541c4e58ca2e23d55 (diff)
downloadsandcrawler-8d64bf54aabaf7fd9411a0304e9455770cfba3a9.tar.gz
sandcrawler-8d64bf54aabaf7fd9411a0304e9455770cfba3a9.zip
python makefile: don't duplicate 'lint' commands during 'test'
Diffstat (limited to 'python')
-rw-r--r--python/Makefile2
1 files changed, 0 insertions, 2 deletions
diff --git a/python/Makefile b/python/Makefile
index f808b87..9593ab4 100644
--- a/python/Makefile
+++ b/python/Makefile
@@ -25,8 +25,6 @@ fmt: ## Run code formating on all source code
.PHONY: test
test: ## Run all tests and lints
- pipenv run flake8 . --select=E9,F63,F7,F82 --exit-zero
- pipenv run mypy *.py sandcrawler/ tests/ --ignore-missing-imports
pipenv run pytest
.PHONY: coverage