(dir: &Path, run_id: &str)
| 401 | } |
| 402 | |
| 403 | fn lifecycle_path(dir: &Path, run_id: &str) -> PathBuf { |
| 404 | dir.join(format!("{}.json", run_id)) |
| 405 | } |
| 406 | |
| 407 | fn validate_name(label: &str, value: &str) -> CliResult<()> { |
| 408 | if value.trim().is_empty() { |
no outgoing calls
no test coverage detected