summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib/reportfile.py
blob: 00841de2bc9579871dd0fbb45be40dbaf3821592 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""Manage interactions with the report.json file."""

from __future__ import absolute_import

import json

from . import config
from .testing import report as _report


def write(suites):
    """Write the combined report of all executions if --reportFile was specified."""

    if config.REPORT_FILE is None:
        return

    reports = []
    for suite in suites:
        reports.extend(suite.get_reports())

    combined_report_dict = _report.TestReport.combine(*reports).as_dict()
    with open(config.REPORT_FILE, "w") as fp:
        json.dump(combined_report_dict, fp)