(&self, system_info: &SystemInfo)
| 121 | } |
| 122 | |
| 123 | fn support_level(&self, system_info: &SystemInfo) -> ExecutorSupport { |
| 124 | match &system_info.os { |
| 125 | SupportedOs::Linux(_) => ExecutorSupport::FullySupported, |
| 126 | SupportedOs::Macos { .. } => ExecutorSupport::Unsupported, |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | async fn setup( |
| 131 | &self, |
no outgoing calls
no test coverage detected