(dir: &Path, run_id: &str)
| 652 | } |
| 653 | |
| 654 | fn lifecycle_path(dir: &Path, run_id: &str) -> PathBuf { |
| 655 | dir.join(format!("{}.json", run_id)) |
| 656 | } |
| 657 | |
| 658 | fn validate_name(label: &str, value: &str) -> CliResult<()> { |
| 659 | if value.trim().is_empty() { |
no outgoing calls
no test coverage detected