src/eric7/Testing/Interfaces/UnittestExecutor.py

branch
eric7
changeset 10069
435cc5875135
parent 10050
3750abc45d5e
child 10079
0222a480e93d
child 10404
f7d9c31f0c38
equal deleted inserted replaced
10068:7febcdccb2a1 10069:435cc5875135
78 with contextlib.suppress(json.JSONDecodeError): 78 with contextlib.suppress(json.JSONDecodeError):
79 return json.loads(versionsStr) 79 return json.loads(versionsStr)
80 80
81 return {} 81 return {}
82 82
83 def hasCoverage(self, interpreter): 83 def hasCoverage(self, interpreter): # noqa: U100
84 """ 84 """
85 Public method to get the test framework version and version information 85 Public method to get the test framework version and version information
86 of its installed plugins. 86 of its installed plugins.
87 87
88 @param interpreter interpreter to be used for the test 88 @param interpreter interpreter to be used for the test
90 @return flag indicating the availability of coverage functionality 90 @return flag indicating the availability of coverage functionality
91 @rtype bool 91 @rtype bool
92 """ 92 """
93 return True 93 return True
94 94
95 def supportsPatterns(self, interpreter): 95 def supportsPatterns(self, interpreter): # noqa: U100
96 """ 96 """
97 Public method to indicate the support for test filtering using test name 97 Public method to indicate the support for test filtering using test name
98 patterns or a test name pattern expression. 98 patterns or a test name pattern expression.
99 99
100 @param interpreter interpreter to be used for the test 100 @param interpreter interpreter to be used for the test

eric ide

mercurial