src/eric7/Testing/Interfaces/PytestExecutor.py

branch
eric7
changeset 10069
435cc5875135
parent 10050
3750abc45d5e
child 10079
0222a480e93d
child 10404
f7d9c31f0c38
equal deleted inserted replaced
10068:7febcdccb2a1 10069:435cc5875135
85 if "plugins" in versions: 85 if "plugins" in versions:
86 return any(plugin["name"] == "pytest-cov" for plugin in versions["plugins"]) 86 return any(plugin["name"] == "pytest-cov" for plugin in versions["plugins"])
87 87
88 return False 88 return False
89 89
90 def supportsPatterns(self, interpreter): 90 def supportsPatterns(self, interpreter): # noqa: U100
91 """ 91 """
92 Public method to indicate the support for test filtering using test name 92 Public method to indicate the support for test filtering using test name
93 patterns or a test name pattern expression. 93 patterns or a test name pattern expression.
94 94
95 @param interpreter interpreter to be used for the test 95 @param interpreter interpreter to be used for the test
97 @return flag indicating support of markers 97 @return flag indicating support of markers
98 @rtype bool 98 @rtype bool
99 """ 99 """
100 return True 100 return True
101 101
102 def supportsMarkers(self, interpreter): 102 def supportsMarkers(self, interpreter): # noqa: U100
103 """ 103 """
104 Public method to indicate the support for test filtering using markers and/or 104 Public method to indicate the support for test filtering using markers and/or
105 marker expressions. 105 marker expressions.
106 106
107 @param interpreter interpreter to be used for the test 107 @param interpreter interpreter to be used for the test

eric ide

mercurial