X-Git-Url: https://gerrit.akraino.org/r/gitweb?p=validation.git;a=blobdiff_plain;f=bluval%2Fbluval.py;h=f8762bd8d0d89137ba96622d0ff4fb3e44d95b52;hp=c79c83031d0d6065ef55b0566ed8ebcef36e4a82;hb=HEAD;hpb=e0b8cb1700cc9ba3e46f8ea285007ae21b3c8a13 diff --git a/bluval/bluval.py b/bluval/bluval.py index c79c830..f8762bd 100644 --- a/bluval/bluval.py +++ b/bluval/bluval.py @@ -61,14 +61,19 @@ def run_testcase(testcase): variables_dict['log_path'] = str(results_path) variables_updated_file = mypath.parents[1].joinpath("tests/variables_updated.yaml") variables_updated_file.write_text(str(variables_dict)) + variables_loglevel = variables_dict['loglevel'] # run the test - args = ["robot", "-V", str(variables_updated_file), "-d", str(results_path), - "-b", "debug.log", str(test_path)] + args = ["robot", "-V", str(variables_updated_file), + "-d", str(results_path), + "-n", "non-critical", + "-b", "debug.log", + "-L", str(variables_loglevel), + str(test_path)] print('Executing testcase {}'.format(name)) print('show_stopper {}'.format(show_stopper)) - print('Invoking {}'.format(args)) + print('Invoking {}'.format(args), flush=True) try: status = subprocess.call(args, shell=False) if status != 0 and show_stopper.lower() == "true":