From 85bd8d3cf0fe71963db819b2bbb2b93728353f87 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Thu, 8 Feb 2024 00:23:04 +0100 Subject: [PATCH] Fix your Py --- tests/ci/report.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ci/report.py b/tests/ci/report.py index 8b83566eb57..de94c23bc2c 100644 --- a/tests/ci/report.py +++ b/tests/ci/report.py @@ -450,10 +450,10 @@ class BuildResult: return self.build_config.sanitizer @property - def coverage(self) -> bool: + def coverage(self) -> str: if self.build_config is None: return self._wrong_config_message - return self.build_config.coverage + return str(self.build_config.coverage) @property def grouped_urls(self) -> List[List[str]]: