Files
00071a6e0bd9bf70d7e7afd1656fea39d5149e68
349 lines
12 KiB
Python
349 lines
12 KiB
Python
#!/usr/bin/env python
import os
from nose import config
class NovaTestResult(result.TextTestResult):
result.TextTestResult.__init__(self, *args, **kw)
self._last_case = None
def startTest(self, test):
current_case = test.test.__class__.__name__
def _makeResult(self):
# If any argument looks like a test name but doesn't have "nova.tests" in
c = config.Config(stream=sys.stdout,