diff options
Diffstat (limited to 'buildscripts/resmokelib/reportfile.py')
-rw-r--r-- | buildscripts/resmokelib/reportfile.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/buildscripts/resmokelib/reportfile.py b/buildscripts/resmokelib/reportfile.py index 7dcf5623a6d..00841de2bc9 100644 --- a/buildscripts/resmokelib/reportfile.py +++ b/buildscripts/resmokelib/reportfile.py @@ -1,6 +1,4 @@ -""" -Manages interactions with the report.json file. -""" +"""Manage interactions with the report.json file.""" from __future__ import absolute_import @@ -11,10 +9,7 @@ from .testing import report as _report def write(suites): - """ - Writes the combined report of all executions if --reportFile was - specified on the command line. - """ + """Write the combined report of all executions if --reportFile was specified.""" if config.REPORT_FILE is None: return |