--- a/src/eric7/Testing/Interfaces/PytestRunner.py Thu May 25 11:12:05 2023 +0200 +++ b/src/eric7/Testing/Interfaces/PytestRunner.py Thu May 25 19:51:47 2023 +0200 @@ -133,7 +133,7 @@ self.__wasSkipped = False self.__wasXfail = False - def pytest_report_header(self, config, startdir): + def pytest_report_header(self, config, startdir): # noqa: U100 """ Public method called by pytest before any reporting. @@ -175,7 +175,7 @@ } ) - def pytest_runtest_logstart(self, nodeid, location): + def pytest_runtest_logstart(self, nodeid, location): # noqa: U100 """ Public method called by pytest before running a test. @@ -267,7 +267,7 @@ self.__writer.write(data) - def pytest_sessionstart(self, session): + def pytest_sessionstart(self, session): # noqa: U100 """ Public method called by pytest before performing collection and entering the run test loop. @@ -278,7 +278,7 @@ self.__totalStartTime = time.monotonic_ns() self.__testsRun = 0 - def pytest_sessionfinish(self, session, exitstatus): + def pytest_sessionfinish(self, session, exitstatus): # noqa: U100 """ Public method called by pytest after the whole test run finished.