diff options
author | Paul Belanger <pabelanger@redhat.com> | 2020-01-15 20:04:55 -0500 |
---|---|---|
committer | Paul Belanger <pabelanger@redhat.com> | 2020-01-15 20:35:28 -0500 |
commit | 13764be572f5571cec916d276933655a544a4810 (patch) | |
tree | a9e77f63ce9613133e3e321cb973a8e54c826593 | |
parent | 34eb779c77487679091849f3df62038a784b68ac (diff) | |
download | vyos-ansible-old-13764be572f5571cec916d276933655a544a4810.tar.gz vyos-ansible-old-13764be572f5571cec916d276933655a544a4810.zip |
Don't run flake8 on tests/unit/compat
Until we stop using the migration script, we cannot modify these files.
So skip flake8 for now on them.
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
-rw-r--r-- | tox.ini | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -26,7 +26,7 @@ commands = {posargs} # E123, E125 skipped as they are invalid PEP-8. show-source = True -ignore = E123,E125,E402,W503 +ignore = E123,E125,E231,E402,W503 max-line-length = 160 builtins = _ -exclude = .git,.tox +exclude = .git,.tox,tests/unit/compat/ |