Skip to content

Commit

Permalink
Add __test__ = False to hooks (#28477)
Browse files Browse the repository at this point in the history
  • Loading branch information
ccruzagralopes authored and pull[bot] committed Nov 8, 2023
1 parent 6d3de99 commit 1020268
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/py_matter_yamltests/matter_yamltests/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 1020268

Please sign in to comment.