diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-03 13:39:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-03 13:39:28 +0000 |
commit | 924f5ea83e48277e014ebf0d19a27187cb93e2f7 (patch) | |
tree | 75920a275bba045f6d108204562c218a9a26ea15 /python/Makefile.am | |
parent | Adding upstream version 2.1.7. (diff) | |
download | pacemaker-upstream.tar.xz pacemaker-upstream.zip |
Adding upstream version 2.1.8~rc1.upstream/2.1.8_rc1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'python/Makefile.am')
-rw-r--r-- | python/Makefile.am | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/python/Makefile.am b/python/Makefile.am index 803fb0c..71e587e 100644 --- a/python/Makefile.am +++ b/python/Makefile.am @@ -1,5 +1,5 @@ # -# Copyright 2023 the Pacemaker project contributors +# Copyright 2023-2024 the Pacemaker project contributors # # The version control history for this file may have further details. # @@ -24,3 +24,13 @@ check-local: .PHONY: pylint pylint: pylint $(SUBDIRS) + +# Disabled warnings: +# E501 - Line too long +# +# Disable unused imports on __init__.py files (we likely just have them +# there for re-exporting). +# Disable docstrings warnings on unit tests. +.PHONY: pyflake +pyflake: + flake8 --ignore=E501 --per-file-ignores="__init__.py:F401 tests/*:D100,D101,D102,D104" $(SUBDIRS) |