(self, p)
| 826 | errors.report(f"Error running before_process: {script.filename}", exc_info=True) |
| 827 | |
| 828 | def process(self, p): |
| 829 | for script in self.ordered_scripts('process'): |
| 830 | try: |
| 831 | script_args = p.script_args[script.args_from:script.args_to] |
| 832 | script.process(p, *script_args) |
| 833 | except Exception: |
| 834 | errors.report(f"Error running process: {script.filename}", exc_info=True) |
| 835 | |
| 836 | def process_before_every_sampling(self, p, **kwargs): |
| 837 | for script in self.ordered_scripts('process_before_every_sampling'): |
nothing calls this directly
no test coverage detected