summaryrefslogtreecommitdiffstats
path: root/tools/lintstack.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-05-30 21:22:03 +0000
committerGerrit Code Review <review@openstack.org>2013-05-30 21:22:03 +0000
commit19cd435558df55f9b9e15d7bedc258ade123a018 (patch)
treee00506192555b478b490685a7fe2f1ed25bfc5b7 /tools/lintstack.py
parent7210c923eab70bae6d269492a36263249c172578 (diff)
parent14b66b4ba69cdec45b9930a14c1bb19dae00e07f (diff)
downloadnova-19cd435558df55f9b9e15d7bedc258ade123a018.tar.gz
nova-19cd435558df55f9b9e15d7bedc258ade123a018.tar.xz
nova-19cd435558df55f9b9e15d7bedc258ade123a018.zip
Merge "Make pylint ignore nova/objects/"
Diffstat (limited to 'tools/lintstack.py')
-rwxr-xr-xtools/lintstack.py4
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"