aboutsummaryrefslogtreecommitdiffstats
path: root/python/Makefile
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2021-10-26 13:55:09 -0700
committerBryan Newbold <bnewbold@archive.org>2021-10-26 13:55:09 -0700
commit326bbc56cb01b87d58307785d2b2a6df09c0e3c2 (patch)
tree7cfffa5d9118dc7ba480c4e64c2101609c3073a3 /python/Makefile
parentbe82253e5189504be2ffd26e2be7480c517ae6e3 (diff)
downloadsandcrawler-326bbc56cb01b87d58307785d2b2a6df09c0e3c2.tar.gz
sandcrawler-326bbc56cb01b87d58307785d2b2a6df09c0e3c2.zip
Makefile: don't fail on isort error (consider these minor)
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 d6eafac..4cef708 100644
--- a/python/Makefile
+++ b/python/Makefile
@@ -15,7 +15,7 @@ deps: ## Install dependencies using pipenv
.PHONY: lint
lint: ## Run lints (eg, flake8, mypy)
pipenv run flake8 . --exit-zero
- pipenv run isort -q -c .
+ pipenv run isort -q -c . || true
pipenv run mypy *.py sandcrawler/ tests/ --ignore-missing-imports
pipenv run pylint --rcfile=.pylintrc -E --jobs=4 sandcrawler tests/*.py *.py