Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion monitoring/prepare_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ def update_from_coverage(name: str, labels: dict) -> str:
labels["type"] = "averaged_by_classes"
else:
labels["source"] = source
if "source" not in labels:
labels["source"] = "all"
return coverage_key


Expand Down Expand Up @@ -88,7 +90,8 @@ def build_metrics_from_target(target: dict, runner: str) -> List[dict]:
target["summarised"],
{
"runner": runner,
"project": project
"project": project,
"class": "All"
}
))

Expand Down