X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=checks.py;fp=checks.py;h=4e5fb13934fcee346582b2593c948061df61d59c;hb=1bc097aa957e560147b4d9af49d25e69a6692702;hp=4431d267ebc83b3da429fe1a7f2895a78bde3aea;hpb=39119b4e131155ae38f7b435fc9f3693ca924eed;p=vvp%2Fvalidation-scripts.git diff --git a/checks.py b/checks.py index 4431d26..4e5fb13 100644 --- a/checks.py +++ b/checks.py @@ -40,7 +40,7 @@ import csv import io import json import os -import subprocess #nosec +import subprocess # nosec import sys import pytest @@ -156,13 +156,19 @@ def check_requirements_up_to_date(): def check_app_tests_pass(): - return run_pytest("tests", "--self-test", - msg="app_tests failed. Run pytest app_tests and fix errors.") + return run_pytest( + "tests", + "--self-test", + msg="app_tests failed. Run pytest app_tests and fix errors.", + ) def check_self_test_pass(): - return run_pytest("tests", "--self-test", - msg="self-test failed. Run pytest --self-test and fix errors.") + return run_pytest( + "tests", + "--self-test", + msg="self-test failed. Run pytest --self-test and fix errors.", + ) def check_testable_requirements_are_mapped(): @@ -186,12 +192,12 @@ def check_flake8_passes(): def check_bandit_passes(): - result = subprocess.run( #nosec - ["bandit", "-c", "bandit.yaml", "-r", ".", "-x", "./.tox/**"], #nosec - encoding="utf-8", #nosec - stdout=subprocess.PIPE, #nosec - stderr=subprocess.PIPE, #nosec - ) #nosec + result = subprocess.run( # nosec + ["bandit", "-c", "bandit.yaml", "-r", ".", "-x", "./.tox/**"], # nosec + encoding="utf-8", # nosec + stdout=subprocess.PIPE, # nosec + stderr=subprocess.PIPE, # nosec + ) # nosec msgs = result.stdout.split("\n") if result.returncode != 0 else [] return ["bandit errors detected:"] + [f" {e}" for e in msgs] if msgs else []