Set-up and stop our formatter

Without calling start and stop, our output file is not used by our
Formatters and any formatting plugins.

Related #180
This commit is contained in:
Ian Cordasco 2016-07-25 14:11:53 -05:00
parent fc035c4df2
commit 559e08a09f
No known key found for this signature in database
GPG key ID: 656D3395E4A9791A

View file

@ -284,8 +284,10 @@ class Application(object):
# type: (Union[NoneType, List[str]]) -> NoneType
self.initialize(argv)
self.run_checks()
self.formatter.start()
self.report_errors()
self.report_benchmarks()
self.formatter.stop()
def run(self, argv=None):
# type: (Union[NoneType, List[str]]) -> NoneType