self._stream.write("test: " + test.id() + "\n")
self._stream.flush()
- def addDuration(self, *args):
+ def addDuration(self, *args, **kwargs):
pass
def stopTest(self, test):
self._time = a_datetime
return self.decorated.time(a_datetime)
- def addDuration(self, *args):
+ def addDuration(self, *args, **kwargs):
pass
class TestsuiteEnabledTestResult(unittest.TestResult):
- def addDuration(self, *args):
+ def addDuration(self, *args, **kwargs):
pass
def start_testsuite(self, name):
def _add_prefix(self, test):
return subunit.RemotedTestCase(self.prefix + test.id() + self.suffix)
- def addDuration(self, *args):
+ def addDuration(self, *args, **kwargs):
pass
def addError(self, test, err=None):