(test_env: &'a Environment, infra_ctx: &'a InfrastructureContext)
| 819 | } |
| 820 | |
| 821 | fn deployment_target<'a>(test_env: &'a Environment, infra_ctx: &'a InfrastructureContext) -> DeploymentTarget<'a> { |
| 822 | DeploymentTarget::new(infra_ctx, test_env, &|| AbortStatus::None) |
| 823 | .unwrap_or_else(|e| panic!("Unable to create deployment target: {e}")) |
| 824 | } |
| 825 | |
| 826 | pub fn application_context() -> TestInfo { |
| 827 | let test_kube = test_kubernetes(); |
no outgoing calls
no test coverage detected