From 0ae4032a827ef2fe3ad17b13fe96452f0bf1a818 Mon Sep 17 00:00:00 2001 From: Carolina Lopes Date: Wed, 2 Aug 2023 15:40:18 -0300 Subject: [PATCH] Add `__test__ = False` to hooks --- scripts/py_matter_yamltests/matter_yamltests/hooks.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/py_matter_yamltests/matter_yamltests/hooks.py b/scripts/py_matter_yamltests/matter_yamltests/hooks.py index 6017dd68ad8f2f..b68ae35fd6ce94 100644 --- a/scripts/py_matter_yamltests/matter_yamltests/hooks.py +++ b/scripts/py_matter_yamltests/matter_yamltests/hooks.py @@ -18,6 +18,8 @@ class TestParserHooks(): + __test__ = False + def start(self, count: int): """ This method is called when the parser starts parsing a set of files. @@ -77,6 +79,8 @@ def test_success(self, duration: int): class TestRunnerHooks(): + __test__ = False + def start(self, count: int): """ This method is called when the runner starts running a set of tests.