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
This commit is contained in:
Vipin Balachandran 2019-05-10 18:27:04 -07:00
parent dda60b5204
commit 95d849ebe7
1 changed files with 1 additions and 1 deletions

View File

@ -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):