src/eric7/Testing/Interfaces/PytestRunner.py

branch
eric7-maintenance
changeset 10079
0222a480e93d
parent 9654
7328efba128b
parent 10069
435cc5875135
child 10349
df7edc29cbfb
diff -r 097199aec4bd -r 0222a480e93d src/eric7/Testing/Interfaces/PytestRunner.py
--- a/src/eric7/Testing/Interfaces/PytestRunner.py	Tue May 02 10:20:23 2023 +0200
+++ b/src/eric7/Testing/Interfaces/PytestRunner.py	Sat May 27 19:02:58 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.
 

eric ide

mercurial