From 2381e7b90da750385b9830fac6a12ac6f70b69a3 Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Thu, 20 Mar 2025 10:44:04 +0100 Subject: [PATCH] made better reason_for_failure --- handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handlers.py b/handlers.py index 63257f5..0de93c4 100644 --- a/handlers.py +++ b/handlers.py @@ -299,7 +299,7 @@ class NoCoverageReportFound(HandlerException): reason_for_failure = "No coverage report was found" class FileNotCovered(HandlerException): - reason_for_failure = "Files from the PR were not covered" + reason_for_failure = "Commented file from the PR wasn't not covered" class GradleAggregateReportNotFound(HandlerException): reason_for_failure = "Couldn't find the aggregate report (with gradle it's messy)"