a016a1a565
I noticed this by accident when I ran ansible-lint over this repo from an outside context; it didn't use the .yamllint in here and started compalining about eof whitespace. After scratching my head for a bit as to why this didn't fail here, I realised we've allowed various newlines since the initial commit I936fe2c997597972d884c5fc62655d28e8aaf8c5. Remove this and just use the default eof rules, and fixup the whitespace as required. This is fairly unimportant, but is nice for consistency. Change-Id: Idb46a1f39ba798b0bf70eaa27b4c6b4758ce3d26
27 lines
1.1 KiB
YAML
27 lines
1.1 KiB
YAML
---
|
|
workdir: .
|
|
tox_envlist: pep8
|
|
output: |
|
|
tests/__init__.py:86:12: E111 indentation is not a multiple of four
|
|
return self._normalize_machine(self.baremetal.get_node(name_or_id))
|
|
^
|
|
./tests/__init__.py:90:32: E231 missing whitespace after ','
|
|
def get_machine_by_mac(self,mac):
|
|
^
|
|
# This should be ignored
|
|
/openstack/cloud/_baremetal.py:218:46: E128 continuation line under-indented for visual indent
|
|
json=kwargs,
|
|
^
|
|
tests/test_discovery.py:219:46: E128 continuation line under-indented for visual indent
|
|
error_message=msg,
|
|
^
|
|
comments:
|
|
tests/__init__.py:
|
|
- line: 86
|
|
message: "pep8: E111 indentation is not a multiple of four"
|
|
- line: 90
|
|
message: "pep8: E231 missing whitespace after ','"
|
|
tests/test_discovery.py:
|
|
- line: 219
|
|
message: "pep8: E128 continuation line under-indented for visual indent"
|