X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=bluval%2Fbluval.py;h=c79c83031d0d6065ef55b0566ed8ebcef36e4a82;hb=97008c11c42915afad6ed9ebb53e2c25312360cd;hp=bcdc856c4eb3971fc0353c63c0463ad0d5a9aede;hpb=be9fe2077b219a18e2b03fde3bf76aa3a999c12a;p=validation.git diff --git a/bluval/bluval.py b/bluval/bluval.py index bcdc856..c79c830 100644 --- a/bluval/bluval.py +++ b/bluval/bluval.py @@ -59,11 +59,12 @@ def run_testcase(testcase): variables_file = mypath.parents[1].joinpath("tests/variables.yaml") variables_dict = yaml.safe_load(variables_file.open()) variables_dict['log_path'] = str(results_path) - variables_file.write_text(str(variables_dict)) + variables_updated_file = mypath.parents[1].joinpath("tests/variables_updated.yaml") + variables_updated_file.write_text(str(variables_dict)) # run the test - args = ["robot", "-V", str(variables_file), "-d", - str(results_path), str(test_path)] + args = ["robot", "-V", str(variables_updated_file), "-d", str(results_path), + "-b", "debug.log", str(test_path)] print('Executing testcase {}'.format(name)) print('show_stopper {}'.format(show_stopper)) @@ -96,6 +97,20 @@ def validate_blueprint(yaml_loc, layer): validate_layer(blueprint, layer) +def write_test_info(layer): + """writes testing info to test_info.yaml + """ + data = dict( + test_info=dict( + layer=layer, + optional=_OPTIONAL_ALSO, + ) + ) + + with open('/opt/akraino/results/test_info.yaml', 'w') as outfile: + yaml.dump(data, outfile, default_flow_style=False) + + @click.command() @click.argument('blueprint') @click.option('--layer', '-l') @@ -114,6 +129,7 @@ def main(blueprint, layer, optional_also): print("_OPTIONAL_ALSO {}".format(_OPTIONAL_ALSO)) try: + write_test_info(layer) validate_blueprint(yaml_loc, layer) except ShowStopperError as err: print('ShowStopperError:', err)