src/eric7/Testing/Interfaces/UnittestExecutor.py

branch
eric7
changeset 10431
64157aeb0312
parent 10425
0badf8f80d7c
child 10439
21c28b0f9e41
equal deleted inserted replaced
10430:e440aaf179ce 10431:64157aeb0312
91 """ 91 """
92 proc = QProcess() 92 proc = QProcess()
93 proc.start(interpreter, [UnittestExecutor.runner, "has_coverage"]) 93 proc.start(interpreter, [UnittestExecutor.runner, "has_coverage"])
94 if proc.waitForFinished(3000): 94 if proc.waitForFinished(3000):
95 return proc.exitCode() == 0 95 return proc.exitCode() == 0
96
97 return False
96 98
97 def supportsPatterns(self, interpreter): # noqa: U100 99 def supportsPatterns(self, interpreter): # noqa: U100
98 """ 100 """
99 Public method to indicate the support for test filtering using test name 101 Public method to indicate the support for test filtering using test name
100 patterns or a test name pattern expression. 102 patterns or a test name pattern expression.

eric ide

mercurial