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. |