From 326bbc56cb01b87d58307785d2b2a6df09c0e3c2 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 26 Oct 2021 13:55:09 -0700 Subject: Makefile: don't fail on isort error (consider these minor) --- python/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') 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 -- cgit v1.2.3