Lines Matching refs:json_file
141 def xunit_report_suites(self, json_file, filename): argument
144 with open(json_file) as json_results:
207 def xunit_report(self, json_file, filename, selected_platform=None, full_report=False): argument
216 with open(json_file) as json_results:
493 with open(filename, 'w') as json_file:
494 json.dump(report, json_file, indent=4, separators=(',',':'), cls=ReportingJSONEncoder)
774 json_file = filename + ".json"
775 self.json_report(json_file, version=self.env.version,
780 self.xunit_report(json_file, filename + ".xml", full_report=False)
781 self.xunit_report(json_file, filename + "_report.xml", full_report=True)
782 self.xunit_report_suites(json_file, filename + "_suite_report.xml")
785 self.target_report(json_file, outdir, suffix)
788 def target_report(self, json_file, outdir, suffix): argument
797 self.xunit_report(json_file, filename, platform.name, full_report=True)