aboutsummaryrefslogtreecommitdiffstats
path: root/ice_validator/tests/conftest.py
diff options
context:
space:
mode:
authorsteven stark <steven.stark@att.com>2019-07-24 13:49:04 +0000
committerGerrit Code Review <gerrit@onap.org>2019-07-24 13:49:04 +0000
commit9da2967e6c91d12359896ef3906c47e51d030959 (patch)
tree573a17cf053ecb205b85da08e5d31e88333fa771 /ice_validator/tests/conftest.py
parenta9104115f1334272759bb1815cfa497c3cca3b24 (diff)
parentb395eb5bb6c79558202a3d414982a56fac7c9e1d (diff)
Merge "[VVP] Adding bandit security scans and fixes"
Diffstat (limited to 'ice_validator/tests/conftest.py')
-rw-r--r--ice_validator/tests/conftest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ice_validator/tests/conftest.py b/ice_validator/tests/conftest.py
index e3c21e6..5653cca 100644
--- a/ice_validator/tests/conftest.py
+++ b/ice_validator/tests/conftest.py
@@ -963,7 +963,7 @@ def hash_directory(path):
:param path: string directory containing files
:return: string MD5 hash code (hex)
"""
- md5 = hashlib.md5()
+ md5 = hashlib.md5() # nosec
for dir_path, sub_dirs, filenames in os.walk(path):
for filename in filenames:
file_path = os.path.join(dir_path, filename)