Home | History | Annotate | Download | only in coverage

Lines Matching full:output_path

72                     output_path=None,
81 output_path: path to place output files in. If None will use
84 If not None, this will be used to customize output_path as shown above.
89 if output_path is None:
93 output_path = os.path.join(self._out_path,
100 coverage_local_path = os.path.join(output_path,
104 report_path = os.path.join(output_path,
213 output_path = os.path.join(self._output_root_path, target_name)
215 if os.path.isdir(output_path) and target is not None:
216 coverage_files = self._FindCoverageFiles(output_path)
217 combined_coverage = os.path.join(output_path, "%s.%s" %
220 report_path = os.path.join(output_path, target_name)
223 logger.Log("%s is not a valid target directory, skipping" % output_path)