diff options
author | Jenkins <jenkins@review.openstack.org> | 2013-05-30 21:22:03 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2013-05-30 21:22:03 +0000 |
commit | 19cd435558df55f9b9e15d7bedc258ade123a018 (patch) | |
tree | e00506192555b478b490685a7fe2f1ed25bfc5b7 /tools/lintstack.py | |
parent | 7210c923eab70bae6d269492a36263249c172578 (diff) | |
parent | 14b66b4ba69cdec45b9930a14c1bb19dae00e07f (diff) | |
download | nova-19cd435558df55f9b9e15d7bedc258ade123a018.tar.gz nova-19cd435558df55f9b9e15d7bedc258ade123a018.tar.xz nova-19cd435558df55f9b9e15d7bedc258ade123a018.zip |
Merge "Make pylint ignore nova/objects/"
Diffstat (limited to 'tools/lintstack.py')
-rwxr-xr-x | tools/lintstack.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/lintstack.py b/tools/lintstack.py index 5c4fb0a3a..cda5f0b3d 100755 --- a/tools/lintstack.py +++ b/tools/lintstack.py @@ -34,7 +34,9 @@ ignore_messages = ["An attribute affected in nova.tests"] # Note(maoy): we ignore all errors in openstack.common because it should be # checked elsewhere. We also ignore nova.tests for now due to high false # positive rate. -ignore_modules = ["nova/openstack/common/", "nova/tests/"] +# Note(danms): we ignore all errors in nova.objects because the false +# positive rate should be very high. +ignore_modules = ["nova/openstack/common/", "nova/tests/", "nova/objects/"] KNOWN_PYLINT_EXCEPTIONS_FILE = "tools/pylint_exceptions" |