From 95d849ebe733c3748bdc293362d3a9a4b744b857 Mon Sep 17 00:00:00 2001 From: Vipin Balachandran Date: Fri, 10 May 2019 18:27:04 -0700 Subject: [PATCH] Add nosec to skip bandit check Bandit is flagging one of the lines in unit test as a security issue which is false positive. Adding nosec to skip that line. Change-Id: I36feb93bc23ba5ef0cb497859140bb5f962f2bee --- oslo_vmware/tests/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oslo_vmware/tests/test_api.py b/oslo_vmware/tests/test_api.py index 4ec682c6..e268b775 100644 --- a/oslo_vmware/tests/test_api.py +++ b/oslo_vmware/tests/test_api.py @@ -103,7 +103,7 @@ class VMwareAPISessionTest(base.TestCase): SERVER_IP = '10.1.2.3' PORT = 443 USERNAME = 'admin' - PASSWORD = 'password' + PASSWORD = 'password' # nosec POOL_SIZE = 15 def setUp(self):