From d7e7066140bbd9fd67a4fd59f29f797f252f4570 Mon Sep 17 00:00:00 2001 From: Martin Hoyer Date: Mon, 30 Sep 2024 15:31:50 +0200 Subject: [PATCH] fixup! Add check-result key --- tmt/base.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tmt/base.py b/tmt/base.py index bb1ecc1b93..40579a7b15 100644 --- a/tmt/base.py +++ b/tmt/base.py @@ -1302,10 +1302,6 @@ def manual_test_path(self) -> Path: return Path(self.node.root) / self.path.unrooted() / str(self.test) - def respect_check(self) -> bool: - """ Whether to respect the check result """ - return self.check_result == 'respect' - @property def test_framework(self) -> tmt.frameworks.TestFrameworkClass: framework = tmt.frameworks._FRAMEWORK_PLUGIN_REGISTRY.get_plugin(self.framework)