From 92c57b10b2288b57a08b441256368d6c55f18071 Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Mon, 17 Mar 2025 15:26:51 +0100 Subject: [PATCH] added the coverage to the file entries --- dataset.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dataset.py b/dataset.py index 7e1a43f..8497b7b 100644 --- a/dataset.py +++ b/dataset.py @@ -5,6 +5,7 @@ import json @dataclass class FileData: path: str + coverage: float = -1 # coverage of the file, default -1, is different if we get to the jacoco part of the pipeline content: str = "" # Not sure about this, maybe we should just keep the path and extract the contents dynamically (boh) @dataclass