e61be9ea78
* Remove DryRun parameter in ec2_vpc_igw_facts check_mode Using DryRun in check mode causes errors, and is not required (as nothing changes when calling describe_internet_gateways) Prevents the following error: ``` {"changed": false, "failed": true, "msg": "An error occurred (DryRunOperation) when calling the DescribeInternetGateways operation: Request would have succeeded, but DryRun flag is set."} ``` * ec2_vpc_igw_facts pep8 tidy up |
||
---|---|---|
.. | ||
current-ignore.txt | ||
legacy-files.txt | ||
legacy-ignore.txt | ||
README.md | ||
skip.txt |
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] ...