added the coverage to the file entries

This commit is contained in:
Karma Riuk
2025-03-17 15:26:51 +01:00
parent 3d9b386f22
commit 92c57b10b2

View File

@ -5,6 +5,7 @@ import json
@dataclass @dataclass
class FileData: class FileData:
path: str 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) content: str = "" # Not sure about this, maybe we should just keep the path and extract the contents dynamically (boh)
@dataclass @dataclass