(self, **info)
| 782 | return info |
| 783 | |
| 784 | def set_info(self, **info): |
| 785 | if info: |
| 786 | lib_info = self.calc_libraries_info() |
| 787 | dict_append(info, **lib_info) |
| 788 | # Update extra information |
| 789 | extra_info = self.calc_extra_info() |
| 790 | dict_append(info, **extra_info) |
| 791 | self.saved_results[self.__class__.__name__] = info |
| 792 | |
| 793 | def get_option_single(self, *options): |
| 794 | """ Ensure that only one of `options` are found in the section |
no test coverage detected