git: fcb063e2226e - stable/13 - testing: fix tests without cleanup in pytest.

From: Alexander V. Chernikov <melifaro_at_FreeBSD.org>
Date: Mon, 23 Jan 2023 22:12:15 UTC
The branch stable/13 has been updated by melifaro:

URL: https://cgit.FreeBSD.org/src/commit/?id=fcb063e2226e83d5fe19e837ad118143461d941f

commit fcb063e2226e83d5fe19e837ad118143461d941f
Author:     Alexander V. Chernikov <melifaro@FreeBSD.org>
AuthorDate: 2023-01-01 14:11:18 +0000
Commit:     Alexander V. Chernikov <melifaro@FreeBSD.org>
CommitDate: 2023-01-23 22:09:04 +0000

    testing: fix tests without cleanup in pytest.
    
    It was broken by 89ffac3b01fb3f6749799ac67b7d94056a36778e,
    which added "cleanup" method to the base test class,
     resulting in reporting cleanup for all of the tests.
    
    (cherry picked from commit bb60d265c9825d71cce84a42f66a435f05a6c5f7)
---
 tests/atf_python/utils.py | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/tests/atf_python/utils.py b/tests/atf_python/utils.py
index 17824262b1fd..fddfadac9a56 100644
--- a/tests/atf_python/utils.py
+++ b/tests/atf_python/utils.py
@@ -50,7 +50,3 @@ class BaseTest(object):
     def setup_method(self, method):
         """Run all pre-requisits for the test execution"""
         self._check_modules()
-
-    def cleanup(self, test_id: str):
-        """Cleanup all test resources here"""
-        pass