src/eric7/Testing/Interfaces/TestExecutorBase.py

branch
eric7-maintenance
changeset 10079
0222a480e93d
parent 9654
7328efba128b
parent 10069
435cc5875135
child 10460
3b34efa2857c
--- a/src/eric7/Testing/Interfaces/TestExecutorBase.py	Tue May 02 10:20:23 2023 +0200
+++ b/src/eric7/Testing/Interfaces/TestExecutorBase.py	Sat May 27 19:02:58 2023 +0200
@@ -140,7 +140,7 @@
 
         return False
 
-    def getVersions(self, interpreter):
+    def getVersions(self, interpreter):  # noqa: U100
         """
         Public method to get the test framework version and version information
         of its installed plugins.
@@ -153,7 +153,7 @@
         """
         return {}
 
-    def hasCoverage(self, interpreter):
+    def hasCoverage(self, interpreter):  # noqa: U100
         """
         Public method to get the test framework version and version information
         of its installed plugins.
@@ -165,7 +165,7 @@
         """
         return False
 
-    def supportsPatterns(self, interpreter):
+    def supportsPatterns(self, interpreter):  # noqa: U100
         """
         Public method to indicate the support for test filtering using test name
         patterns or a test name pattern expression.
@@ -177,7 +177,7 @@
         """
         return False
 
-    def supportsMarkers(self, interpreter):
+    def supportsMarkers(self, interpreter):  # noqa: U100
         """
         Public method to indicate the support for test filtering using markers and/or
         marker expressions.
@@ -189,7 +189,7 @@
         """
         return False
 
-    def getMarkers(self, interpreter, workdir):
+    def getMarkers(self, interpreter, workdir):  # noqa: U100
         """
         Public method to get the list of defined markers.
 
@@ -265,7 +265,7 @@
         self.__process.start(config.interpreter, testArgs)
         running = self.__process.waitForStarted()
         if not running:
-            raise RuntimeError
+            raise RuntimeError("Test process did not start.")
 
     def finished(self):
         """

eric ide

mercurial