def stop_fixture(self, parent_uuid, uuid, name, exc_type, exc_val, exc_tb):
     self.allure_logger.stop_after_fixture(uuid,
                                           stop=now(),
                                           status=get_status(exc_val),
                                           statusDetails=get_status_details(
                                               exc_type, exc_val, exc_tb))
Пример #2
0
 def stop_fixture(self, parent_uuid, uuid, name, exc_type, exc_val, exc_tb):
     self.allure_logger.stop_after_fixture(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.allure_logger.stop_step(uuid,
                                  stop=now(),
                                  status=get_status(exc_val),
                                  statusDetails=get_status_details(
                                      exc_type, exc_val, exc_tb))
Пример #4
0
 def stop_step(self, uuid, exc_type, exc_val, exc_tb):
     self.allure_logger.stop_step(uuid,
                                  stop=now(),
                                  status=get_status(exc_val),
                                  statusDetails=get_status_details(exc_type, exc_val, exc_tb))