aboutsummaryrefslogtreecommitdiffstats
path: root/python/Makefile
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2021-05-24 16:27:04 -0700
committerBryan Newbold <bnewbold@archive.org>2021-05-24 16:27:04 -0700
commitd5ad139fe271c994643fde128ca22be266cb3003 (patch)
treeffc6b0877ee33cc1bacd52f06a318e6a4b8385f4 /python/Makefile
parentb5267079739b1155648686b89f32c0ea3e9acbfd (diff)
downloadsandcrawler-d5ad139fe271c994643fde128ca22be266cb3003.tar.gz
sandcrawler-d5ad139fe271c994643fde128ca22be266cb3003.zip
python Makefile: fix test/*.py linting with newer pylint
Diffstat (limited to 'python/Makefile')
-rw-r--r--python/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/Makefile b/python/Makefile
index 9593ab4..4ef99f5 100644
--- a/python/Makefile
+++ b/python/Makefile
@@ -17,7 +17,7 @@ lint: ## Run lints (eg, flake8, mypy)
#pipenv run flake8 . --exit-zero
pipenv run flake8 . --select=E9,F63,F7,F82 --exit-zero
pipenv run mypy *.py sandcrawler/ tests/ --ignore-missing-imports
- pipenv run pylint --rcfile=.pylintrc -E --jobs=4 sandcrawler tests *.py
+ pipenv run pylint --rcfile=.pylintrc -E --jobs=4 sandcrawler tests/*.py *.py
.PHONY: fmt
fmt: ## Run code formating on all source code