############################################################################## # Copyright (c) 2017 Rajesh Kudaka <4k.rajesh@gmail.com> # Copyright (c) 2018 Intel Corporation. # # All rights reserved. This program and the accompanying materials # are made available under the terms of the Apache License, Version 2.0 # which accompanies this distribution, and is available at # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## """ Handler for yardstick command 'report' """ from yardstick.benchmark.core import report from yardstick.cmd.commands import change_osloobj_to_paras from yardstick.common.utils import cliargs class ReportCommands(object): # pragma: no cover """Report commands. Set of commands to manage reports. """ @cliargs("task_id", type=str, help=" task id", nargs=1) @cliargs("yaml_name", type=str, help=" Yaml file Name", nargs=1) def do_generate(self, args): """Generate a report.""" param = change_osloobj_to_paras(args) report.Report().generate(param) @cliargs("task_id", type=str, help=" task id", nargs=1) @cliargs("yaml_name", type=str, help=" Yaml file Name", nargs=1) def do_generate_nsb(self, args): """Generate a report using the NSB template.""" param = change_osloobj_to_paras(args) report.Report().generate_nsb(param)