()
| 50 | |
| 51 | impl LocalDriver { |
| 52 | fn from_env() -> Option<Self> { |
| 53 | match e2e_driver().as_deref() { |
| 54 | Some("docker") => Some(Self::Docker), |
| 55 | Some("podman") => Some(Self::Podman), |
| 56 | Some("vm") => Some(Self::Vm), |
| 57 | _ => None, |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | fn is_container(self) -> bool { |
| 62 | matches!(self, Self::Docker | Self::Podman) |
nothing calls this directly
no test coverage detected