diff --git a/Makefile b/Makefile index b40349d4..bf36b44f 100644 --- a/Makefile +++ b/Makefile @@ -66,7 +66,7 @@ lint: pylint flake8 .PHONY: pylint pylint: - @$(PYTHON3) -m pylint --recursive=y --persistent=n --verbose hypernetx + @$(PYTHON3) -m pylint --recursive=y --persistent=n --exit-zero --verbose hypernetx # Todo: fix flake8 errors and remove --exit-zero .PHONY: flake8 diff --git a/tox.ini b/tox.ini index f62d61b3..9bc799e4 100644 --- a/tox.ini +++ b/tox.ini @@ -44,7 +44,7 @@ basepython = python3.11 commands_pre = poetry install --with lint commands = - poetry run pylint --recursive=y --persistent=n hypernetx +# poetry run pylint --recursive=y --exit-zero --persistent=n hypernetx poetry run flake8 hypernetx --exit-zero poetry run pre-commit install poetry run pre-commit run --all-files