Source code for asv.plugins.summarygrid

# Licensed under a 3-clause BSD style license - see LICENSE.rst

from ..console import log
from ..publishing import OutputPublisher


[docs] class SummaryGrid(OutputPublisher):
[docs] name = ""
[docs] button_label = "Grid view"
[docs] description = "Display as a agrid"
[docs] order = 0
@classmethod
[docs] def publish(cls, conf, repo, benchmarks, graphs, revisions): # Generate and save summary graphs summaries = graphs.get_summary_graphs(dots=log.dot) for graph in summaries: graph.save(conf.html_dir)