1493 "<br/>".join(error.splitlines()), |
1493 "<br/>".join(error.splitlines()), |
1494 ), |
1494 ), |
1495 ) |
1495 ) |
1496 self.sbLabel.clear() |
1496 self.sbLabel.clear() |
1497 |
1497 |
1498 def __testDiscoveryProcessFinished(self, results, output): # noqa: U100 |
1498 def __testDiscoveryProcessFinished(self, _results, output): |
1499 """ |
1499 """ |
1500 Private slot to handle the 'testFinished' signal of the executor in |
1500 Private slot to handle the 'testFinished' signal of the executor in |
1501 discovery mode. |
1501 discovery mode. |
1502 |
1502 |
1503 @param results list of test result objects (if not sent via the |
1503 @param _results list of test result objects (if not sent via the |
1504 'testResult' signal) |
1504 'testResult' signal) (unused) |
1505 @type list of TestResult |
1505 @type list of TestResult |
1506 @param output string containing the test process output (if any) |
1506 @param output string containing the test process output (if any) |
1507 @type str |
1507 @type str |
1508 """ |
1508 """ |
1509 self.__recentLog = output |
1509 self.__recentLog = output |