Exemple #1
0
 def stop_fixture(self, parent_uuid, uuid, name, exc_type, exc_val, exc_tb):
     if name in FIXTURES:
         self.logger.stop_before_fixture(uuid=uuid,
                                         stop=now(),
                                         status=get_status(exc_val),
                                         statusDetails=get_status_details(
                                             exc_type, exc_val, exc_tb))
 def stop_fixture(self, parent_uuid, uuid, name, exc_type, exc_val, exc_tb):
     if name in FIXTURES:
         self.logger.stop_before_fixture(uuid=uuid,
                                         stop=now(),
                                         status=get_status(exc_val),
                                         statusDetails=get_status_details(exc_type, exc_val, exc_tb))
Exemple #3
0
 def stop_step(self, uuid, exc_type, exc_val, exc_tb):
     self.logger.stop_step(uuid,
                           stop=now(),
                           status=get_status(exc_val),
                           statusDetails=get_status_details(
                               exc_type, exc_val, exc_tb))
 def stop_step(self, uuid, exc_type, exc_val, exc_tb):
     self.logger.stop_step(uuid,
                           stop=now(),
                           status=get_status(exc_val),
                           statusDetails=get_status_details(exc_type, exc_val, exc_tb))