pub fn create_executor(
mode: ExecutionMode,
python_path: PathBuf,
) -> Result<Box<dyn TestExecutor>>Expand description
Create the best available executor based on the requested mode.
Embedded: Use PyO3 embedded Python (fails if feature not enabled or Python unavailable)Subprocess: Always use subprocess executionPooled: Use worker pool (requires async - usecreate_pooled_executorinstead)Auto: Try embedded first, fall back to subprocess