src/eric7/Testing/Interfaces/PytestRunner.py

branch
eric7
changeset 10069
435cc5875135
parent 9653
e67609152c5e
child 10079
0222a480e93d
child 10331
c1a2ff7e3575
--- 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.
 

eric ide

mercurial