ansible/test/sanity/pep8
Sloane Hertel 5f517fdfa9 [cloud] route53_zone: allow split horizon for route53_zone and refactor - fixes #22939 (#23190)
* allow split horizon for route53_zone and refactor

* fix documentation

remove comment

fix version_added

* Remove unused imports

* Only include zone as matching if it has the same privacy setting

* Use `.endswith` instead of indexing into a string

* Update public zone behavior to only create new if there is no matching public zone

* Remove from legacy PEP8 files
2017-04-11 16:02:14 -04:00
..
current-ignore.txt Swap pep8 current to legacy (#22891) 2017-03-23 13:16:55 -05:00
legacy-files.txt [cloud] route53_zone: allow split horizon for route53_zone and refactor - fixes #22939 (#23190) 2017-04-11 16:02:14 -04:00
legacy-ignore.txt Swap pep8 current to legacy (#22891) 2017-03-23 13:16:55 -05:00
README.md add instructions for running pep8 locally (#21120) 2017-02-13 11:09:50 -08:00
skip.txt Don't skip action/__init__.py (#22911) 2017-03-23 13:40:02 -05:00

PEP 8

PEP 8 style guidelines are enforced by pep8 on all python files in the repository by default.

Current Rule Set

By default all files are tested using the current rule set. All pep8 tests are executed, except those listed in the current ignore list.

Legacy Rule Set

Files which are listed in the legacy file list are tested using the legacy rule set. All pep8 tests are executed, except those listed in the current ignore list or legacy ignore list.

Files listed in the legacy file list which pass the current rule set will result in an error. This is intended to prevent regressions on style guidelines for files which pass the more stringent current rule set.

Skipping Tests

Files listed in the skip list are not tested by pep8.

Removed Files

Files which have been removed from the repository must be removed from the legacy file list and the skip list.

Running Locally

The pep8 check can be run locally with:

./test/runner/ansible-test sanity --test pep8 [file-or-directory-path-to-check] ...