Merge "Enable some off-by-default checks"

This commit is contained in:
Jenkins 2017-08-01 13:53:33 +00:00 committed by Gerrit Code Review
commit adf7bc3d4a
3 changed files with 6 additions and 4 deletions

View File

@ -130,7 +130,7 @@ class TestConfigHelper(base.SaharaTestCase):
}
opt_name = 'tt'
default = c_helper._get_spark_opt_default(opt_name)
self.assertEqual(default, None)
self.assertIsNone(default)
opt_name = 'test_name'
default = c_helper._get_spark_opt_default(opt_name)

View File

@ -189,7 +189,7 @@ class VersionHandlerTest(base.SaharaTestCase):
def test_get_edp_engine(self, join, get_instance, get_plugin):
job_type = ''
ret = self.vh.get_edp_engine(self.cluster, job_type)
self.assertEqual(ret, None)
self.assertIsNone(ret)
job_type = 'Java'
ret = self.vh.get_edp_engine(self.cluster, job_type)

View File

@ -99,8 +99,10 @@ commands = bandit -c bandit.yaml -r sahara -n5 -p sahara_default -x tests
show-source = true
builtins = _
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,tools
# [H904] Delay string interpolations at logging calls.
enable-extensions=H904
# [H904] Delay string interpolations at logging calls
# [H106] Dont put vim configuration in source files
# [H203] Use assertIs(Not)None to check for None.
enable-extensions=H904,H106,H203
[hacking]
import_exceptions = sahara.i18n