X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fgenerator_report.py;h=cf8a8d1675f0c97411ed5d8ea5e774cc80971b09;hb=394659ca1c7cac87627347bc850477448d0743c7;hp=55aa24b02f474c007f0cfba232a13f50aec79621;hpb=9a89069be33f11879f8307e5b774c6e1e7afa398;p=csit.git diff --git a/resources/tools/presentation/generator_report.py b/resources/tools/presentation/generator_report.py index 55aa24b02f..cf8a8d1675 100644 --- a/resources/tools/presentation/generator_report.py +++ b/resources/tools/presentation/generator_report.py @@ -140,7 +140,9 @@ def generate_pdf_report(release, spec, versions): convert_plots = "xvfb-run -a wkhtmltopdf {html} {pdf}.pdf" # Convert PyPLOT graphs in HTML format to PDF. - plots = get_files(spec.environment["paths"]["DIR[STATIC,VPP]"], "html") + plots = get_files(spec.environment["paths"]["DIR[STATIC,VPP]"], "html") + plots.extend(get_files(spec.environment["paths"]["DIR[STATIC,DPDK]"], + "html")) for plot in plots: file_name = "{0}".format(plot.rsplit(".", 1)[0]) cmd = convert_plots.format(html=plot, pdf=file_name)