summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib/reportfile.py
diff options
context:
space:
mode:
authorMax Hirschhorn <max.hirschhorn@mongodb.com>2017-10-18 01:45:51 -0400
committerMax Hirschhorn <max.hirschhorn@mongodb.com>2017-10-18 01:45:51 -0400
commit046a5a01c1bc6eeb05852bed9981cbc457802a00 (patch)
treef7a65cb458c422dc7c7451348f1f029f5c95f663 /buildscripts/resmokelib/reportfile.py
parentfb3b2eb0ac9c92c3e9a541a8e25aaa542d05e42f (diff)
downloadmongo-046a5a01c1bc6eeb05852bed9981cbc457802a00.tar.gz
SERVER-31470 Move "run tests" logic into evergreen_run_tests.py.
Diffstat (limited to 'buildscripts/resmokelib/reportfile.py')
-rw-r--r--buildscripts/resmokelib/reportfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/resmokelib/reportfile.py b/buildscripts/resmokelib/reportfile.py
index 11e43018087..7dcf5623a6d 100644
--- a/buildscripts/resmokelib/reportfile.py
+++ b/buildscripts/resmokelib/reportfile.py
@@ -23,6 +23,6 @@ def write(suites):
for suite in suites:
reports.extend(suite.get_reports())
- combined_report_dict = _report.TestReport.combine(*reports).as_dict(convert_failures=True)
+ combined_report_dict = _report.TestReport.combine(*reports).as_dict()
with open(config.REPORT_FILE, "w") as fp:
json.dump(combined_report_dict, fp)