Format a total elapsed time for non-interactive mode timestamps.
(d: Duration)
| 395 | |
| 396 | /// Format a total elapsed time for non-interactive mode timestamps. |
| 397 | fn format_timestamp(d: Duration) -> String { |
| 398 | let secs = d.as_secs_f64(); |
| 399 | format!("[{secs:.1}s]") |
| 400 | } |
| 401 | |
| 402 | fn progress_step_from_metadata(value: &str) -> Option<ProvisioningStep> { |
| 403 | match value { |
no outgoing calls
no test coverage detected