(self, p, **kwargs)
| 848 | def process_before_every_sampling(self, p, **kwargs): |
| 849 | for script in self.ordered_scripts('process_before_every_sampling'): |
| 850 | try: |
| 851 | script_args = p.script_args[script.args_from:script.args_to] |
| 852 | script.process_before_every_sampling(p, *script_args, **kwargs) |
| 853 | except Exception: |
| 854 | errors.report(f"Error running process_before_every_sampling: {script.filename}", exc_info=True) |
| 855 | |
| 856 | def before_process_batch(self, p, **kwargs): |
| 857 | for script in self.ordered_scripts('before_process_batch'): |
| 858 | try: |
| 859 | script_args = p.script_args[script.args_from:script.args_to] |
nothing calls this directly
no test coverage detected