Skip to content

Commit

Permalink
feat(report): enable the overview section by default
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrugman committed May 23, 2022
1 parent 1b405a7 commit 88aad18
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions popmon/pipeline/report_pipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
SectionGenerator,
TrafficLightSectionGenerator,
)
from ..visualization.overview_section import OverviewSectionGenerator


def get_report_pipeline_class(reference_type, reference):
Expand Down Expand Up @@ -377,6 +378,12 @@ def __init__(
}

modules = [
OverviewSectionGenerator(
read_key="traffic_lights",
description=descs.get("overview", ""),
section_name="Overview",
**sg_kws,
),
# generate section with histogram
HistogramSection(
read_key="split_hists",
Expand Down

0 comments on commit 88aad18

Please sign in to comment.