Put the Ollama tests under a feature

This commit is contained in:
Kerollmops 2025-02-06 17:05:26 +01:00
parent a1d1e7c82a
commit ca1ad51564
No known key found for this signature in database
GPG key ID: F250A4C4E3AE5F5F
4 changed files with 7 additions and 5 deletions

View file

@ -6,8 +6,8 @@ use xtask::bench::BenchDeriveArgs;
/// List features available in the workspace
#[derive(Parser, Debug)]
struct ListFeaturesDeriveArgs {
/// Feature to exclude from the list. Repeat the argument to exclude multiple features
#[arg(short, long)]
/// Feature to exclude from the list. Use a comma to separate multiple features.
#[arg(short, long, value_delimiter = ',')]
exclude_feature: Vec<String>,
}