Go to the source code of this file.
|
| str | python_coverage_gate.normalize_path (str|Path path) |
| | Resolve a filesystem path to the canonical string used as a coverage-map key.
|
| |
| argparse.Namespace | python_coverage_gate.parse_args () |
| | Parse coverage thresholds, targets, output location, and pytest arguments for this gate.
|
| |
| list[str] | python_coverage_gate.build_trace_ignoredirs () |
| | Build trace ignoredirs.
|
| |
| dict[str, dict[int, int]] | python_coverage_gate.collect_counts (trace.CoverageResults results) |
| | Transform Python trace results into a per-file, per-line execution-count mapping.
|
| |
| tuple[int, int, float] | python_coverage_gate.compute_file_coverage (Path target, dict[str, dict[int, int]] counts_by_file) |
| | Compute file coverage.
|
| |
| int | python_coverage_gate.main () |
| | Entry point for this script.
|
| |