From 54ac044cfe1d454d7a1a759dfb38f3938299e270 Mon Sep 17 00:00:00 2001 From: Nejc Stebe Date: Thu, 2 Apr 2026 10:25:03 +0200 Subject: [PATCH] show CTA message instead of the issue twice --- render_machine/actions/run_conformance_tests.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/render_machine/actions/run_conformance_tests.py b/render_machine/actions/run_conformance_tests.py index d9f9d81..e3d4d09 100644 --- a/render_machine/actions/run_conformance_tests.py +++ b/render_machine/actions/run_conformance_tests.py @@ -73,10 +73,9 @@ def execute(self, render_context: RenderContext, _previous_action_payload: Any | return ( self.UNRECOVERABLE_ERROR_OUTCOME, RenderError.encode( - message=conformance_tests_issue, + message="Conformance tests script failed due to problems in the environment setup. Please check your environment or update the script for running conformance tests.", error_type="ENVIRONMENT_ERROR", script=conformance_tests_script, - frid=render_context.conformance_tests_running_context.current_testing_frid, issue=conformance_tests_issue, ).to_payload(), )