You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/sanity/pep8
René Moser c1730c21ce cloudstack: cs_sshkeypair: fix fingerprint not used as identifier (#22276)
* cloudstack: cs_sshkeypair: fix fingerprint not used as identifier

* remove from legacy

* fix for 2 keys, one with name and one with fingerprint
8 years ago
..
README.md add instructions for running pep8 locally (#21120) 8 years ago
current-ignore.txt Add `pep8` to `ansible-test`. (#20745) 8 years ago
legacy-files.txt cloudstack: cs_sshkeypair: fix fingerprint not used as identifier (#22276) 8 years ago
legacy-ignore.txt PEP8 E712 fixes (#21916) 8 years ago
skip.txt refactoring async 8 years ago

README.md

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] ...