Skip to content

Commit

Permalink
Ignore false positives PEP8 issues in utils/check_test_configuration.py
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
rjeffman committed Dec 19, 2023
1 parent 0f7ebd2 commit 8197b10
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8197b10

Please sign in to comment.