(&self)
| 32 | |
| 33 | impl Orchestrator { |
| 34 | pub fn is_local(&self) -> bool { |
| 35 | self.provider.get_run_environment() == RunEnvironment::Local |
| 36 | } |
| 37 | |
| 38 | pub async fn new(config: OrchestratorConfig, api_client: &CodSpeedAPIClient) -> Result<Self> { |
| 39 | let provider = run_environment::get_provider(&config, api_client).await?; |
no test coverage detected