src/eric7/Testing/Interfaces/TestExecutorBase.py

branch
eric7-maintenance
changeset 11155
e1843b6efa73
parent 11118
967a88a16a21
parent 11148
15e30f0c76a8
equal deleted inserted replaced
11126:32d0ec15eba0 11155:e1843b6efa73
151 exitCode = proc.exitCode() 151 exitCode = proc.exitCode()
152 return exitCode == 0 152 return exitCode == 0
153 153
154 return False 154 return False
155 155
156 def getVersions(self, interpreter): # noqa: U100 156 def getVersions(self, interpreter): # noqa: U-100
157 """ 157 """
158 Public method to get the test framework version and version information 158 Public method to get the test framework version and version information
159 of its installed plugins. 159 of its installed plugins.
160 160
161 @param interpreter interpreter to be used for the test (unused) 161 @param interpreter interpreter to be used for the test (unused)
164 list of available plugins with name and version each 164 list of available plugins with name and version each
165 @rtype dict 165 @rtype dict
166 """ 166 """
167 return {} 167 return {}
168 168
169 def hasCoverage(self, interpreter): # noqa: U100 169 def hasCoverage(self, interpreter): # noqa: U-100
170 """ 170 """
171 Public method to check, if the collection of coverage data is available. 171 Public method to check, if the collection of coverage data is available.
172 172
173 @param interpreter interpreter to be used for the test (unused) 173 @param interpreter interpreter to be used for the test (unused)
174 @type str 174 @type str
175 @return flag indicating the availability of coverage functionality 175 @return flag indicating the availability of coverage functionality
176 @rtype bool 176 @rtype bool
177 """ 177 """
178 return False 178 return False
179 179
180 def supportsPatterns(self, interpreter): # noqa: U100 180 def supportsPatterns(self, interpreter): # noqa: U-100
181 """ 181 """
182 Public method to indicate the support for test filtering using test name 182 Public method to indicate the support for test filtering using test name
183 patterns or a test name pattern expression. 183 patterns or a test name pattern expression.
184 184
185 @param interpreter interpreter to be used for the test (unused) 185 @param interpreter interpreter to be used for the test (unused)
187 @return flag indicating support of markers 187 @return flag indicating support of markers
188 @rtype bool 188 @rtype bool
189 """ 189 """
190 return False 190 return False
191 191
192 def supportsMarkers(self, interpreter): # noqa: U100 192 def supportsMarkers(self, interpreter): # noqa: U-100
193 """ 193 """
194 Public method to indicate the support for test filtering using markers and/or 194 Public method to indicate the support for test filtering using markers and/or
195 marker expressions. 195 marker expressions.
196 196
197 @param interpreter interpreter to be used for the test (unused) 197 @param interpreter interpreter to be used for the test (unused)
199 @return flag indicating support of markers 199 @return flag indicating support of markers
200 @rtype bool 200 @rtype bool
201 """ 201 """
202 return False 202 return False
203 203
204 def getMarkers(self, interpreter, workdir): # noqa: U100 204 def getMarkers(self, interpreter, workdir): # noqa: U-100
205 """ 205 """
206 Public method to get the list of defined markers. 206 Public method to get the list of defined markers.
207 207
208 @param interpreter interpreter to be used for the test (unused) 208 @param interpreter interpreter to be used for the test (unused)
209 @type str 209 @type str

eric ide

mercurial