示例#1
0
 def start_tests(self):
     """
     Called once before any tests are executed.
     """
     TestResult.start_tests(self)
     self.json = {'debuglog': self.stream.logfile,
                  'tests': []}
示例#2
0
 def start_tests(self):
     """
     Called once before any tests are executed.
     """
     TestResult.start_tests(self)
     self.json = {'debuglog': self.stream.logfile,
                  'job_id': runtime.CURRENT_JOB.unique_id,
                  'tests': []}
示例#3
0
文件: xunit.py 项目: alex8866/avocado
 def start_tests(self):
     """
     Record a start tests event.
     """
     TestResult.start_tests(self)
     self.xml.start_testsuite(datetime.datetime.now())