ansible-test - Improve pep8 compat with black (#84867)

pull/84872/head
Matt Clay 9 months ago committed by GitHub
parent 7e7946b60d
commit b7a5411d8b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -4,3 +4,4 @@ minor_changes:
- ansible-test - Disable the ``deprecated-`` prefixed ``pylint`` rules as their results vary by Python version. - ansible-test - Disable the ``deprecated-`` prefixed ``pylint`` rules as their results vary by Python version.
- ansible-test - Update the ``base`` and ``default`` containers. - ansible-test - Update the ``base`` and ``default`` containers.
- ansible-test - Update sanity test requirements to latest available versions. - ansible-test - Update sanity test requirements to latest available versions.
- ansible-test - Disable the ``pep8`` sanity test rules ``E701`` and ``E704`` to improve compatibility with ``black``.

@ -7,3 +7,7 @@ E741
# Unfortunately this means it also conflicts with the output from `black`. # Unfortunately this means it also conflicts with the output from `black`.
# See: https://github.com/PyCQA/pycodestyle/issues/373 # See: https://github.com/PyCQA/pycodestyle/issues/373
E203 E203
# The "multiple statements on one line" rules conflict with `black` for no-impl class and method defs.
E701
E704

Loading…
Cancel
Save