(&self, system_info: &SystemInfo, setup_cache_dir: Option<&Path>)
| 39 | } |
| 40 | |
| 41 | async fn setup(&self, system_info: &SystemInfo, setup_cache_dir: Option<&Path>) -> Result<()> { |
| 42 | install_valgrind(system_info, setup_cache_dir).await?; |
| 43 | |
| 44 | if let Err(error) = venv_compat::symlink_libpython(None) { |
| 45 | warn!("Failed to symlink libpython"); |
| 46 | debug!("Script error: {error}"); |
| 47 | } |
| 48 | |
| 49 | Ok(()) |
| 50 | } |
| 51 | |
| 52 | async fn run( |
| 53 | &mut self, |
nothing calls this directly
no test coverage detected