
# Objective - Many of the items in the `ci` tool use `pub(crate)`, which is functionally equivalent to `pub` when the crate is not a library. - A few items are missing documentation. ## Solution - Make all `pub(crate)` items just `pub`. - `pub` is easier to type and less obscure, and there's not harm from this change. - Add / modify documentation on `CI`, `Prepare`, and `PreparedCommand`.
26 lines
748 B
Rust
26 lines
748 B
Rust
use crate::{Flag, Prepare, PreparedCommand};
|
|
use argh::FromArgs;
|
|
use xshell::cmd;
|
|
|
|
/// Runs all tests (except for doc tests).
|
|
#[derive(FromArgs, Default)]
|
|
#[argh(subcommand, name = "test")]
|
|
pub struct TestCommand {}
|
|
|
|
impl Prepare for TestCommand {
|
|
fn prepare<'a>(&self, sh: &'a xshell::Shell, flags: Flag) -> Vec<PreparedCommand<'a>> {
|
|
let no_fail_fast = flags
|
|
.contains(Flag::KEEP_GOING)
|
|
.then_some("--no-fail-fast")
|
|
.unwrap_or_default();
|
|
|
|
vec![PreparedCommand::new::<Self>(
|
|
cmd!(
|
|
sh,
|
|
"cargo test --workspace --lib --bins --tests --benches {no_fail_fast}"
|
|
),
|
|
"Please fix failing tests in output above.",
|
|
)]
|
|
}
|
|
}
|