From 8197b10cbd1d279c691e557f8bb61fa1cb02c343 Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman Date: Tue, 19 Dec 2023 15:42:35 -0300 Subject: [PATCH] Ignore false positives PEP8 issues in utils/check_test_configuration.py When running 'flake8' against 'utils/check_test_configuration.py' errors E221 and E321 are raised inside string values instead of Python code. This patch adds configuration to ignore both errors in this file. --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index 95dc458d97..1c059b671f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -27,6 +27,7 @@ exclude = .git,__pycache__,.tox,.venv,.cache,.ansible-freeipa-tests per-file-ignores = plugins/*:E402 roles/*:E402 + utils/check_test_configuration.py:E221,E231 [pydocstyle] inherit = false