Replaced savanna word with mistralclient

Change-Id: Ifb12e0974ce88dd5969cebee284e31377c6bce44
This commit is contained in:
pawnesh.kumar
2016-10-20 10:31:07 +05:30
parent eeb740612e
commit d80b7e03a7

View File

@@ -30,11 +30,11 @@ from pylint.reporters import text
# Note(maoy): E1103 is error code related to partial type inference
ignore_codes = ["E1103"]
# Note(maoy): the error message is the pattern of E0202. It should be ignored
# for savanna.tests modules
ignore_messages = ["An attribute affected in savanna.tests"]
# for mistralclient.tests modules
ignore_messages = ["An attribute affected in mistralclient.tests"]
# We ignore all errors in openstack.common because it should be checked
# elsewhere.
ignore_modules = ["savanna/openstack/common/"]
ignore_modules = ["mistralclient/openstack/common/"]
KNOWN_PYLINT_EXCEPTIONS_FILE = "tools/pylint_exceptions"
@@ -129,7 +129,7 @@ class ErrorKeys(object):
def run_pylint():
buff = StringIO.StringIO()
reporter = text.ParseableTextReporter(output=buff)
args = ["--include-ids=y", "-E", "savanna"]
args = ["--include-ids=y", "-E", "mistralclient"]
lint.Run(args, reporter=reporter, exit=False)
val = buff.getvalue()
buff.close()