mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-09-24 05:36:28 +00:00
Create the test xtask command and args
This commit is contained in:
11
crates/xtask/src/test/mod.rs
Normal file
11
crates/xtask/src/test/mod.rs
Normal file
@ -0,0 +1,11 @@
|
||||
use clap::Parser;
|
||||
|
||||
use crate::common::args::CommonArgs;
|
||||
|
||||
/// Run tests from a workload
|
||||
#[derive(Parser, Debug)]
|
||||
pub struct TestDeriveArgs {
|
||||
/// Common arguments shared with other commands
|
||||
#[command(flatten)]
|
||||
common: CommonArgs,
|
||||
}
|
Reference in New Issue
Block a user