cargo-tupa 0.9.5

Cargo subcommand for Tupã Rust-DSL pipelines
1
2
3
4
5
6
7
8
9
10
use anyhow::Result;
use std::path::PathBuf;

/// Run `cargo tupa test` — execute pipeline integration tests.
pub fn run(_manifest_path: &Option<PathBuf>, _filter: Option<String>) -> Result<()> {
    anyhow::bail!(
        "cargo tupa test not yet implemented.\n\
         Planned for 0.9.3 — discover and run pipeline integration tests."
    )
}