I run this: ``` def temp() result = pytest.main(params, [self.test_plugins]) ``` with future: `self.future = self.executor.submit(temp, details.to_list())` I can't stop the future in middle of test run. I can cancel the run when using Process, but then I can't use xdist hooks. Please help