Home | History | Annotate | Download | only in coverage

Lines Matching refs:output_path

71                     output_path=None,
80 output_path: path to place output files in. If None will use
83 If not None, this will be used to customize output_path as shown above.
88 if output_path is None:
92 output_path = os.path.join(self._root_path,
99 coverage_local_path = os.path.join(output_path,
103 report_path = os.path.join(output_path,
212 output_path = os.path.join(self._output_root_path, target_name)
214 if os.path.isdir(output_path) and target is not None:
215 coverage_files = self._FindCoverageFiles(output_path)
216 combined_coverage = os.path.join(output_path, "%s.%s" %
219 report_path = os.path.join(output_path, target_name)
222 logger.Log("%s is not a valid target directory, skipping" % output_path)