From 7cf0355a88c223ab3db3ca4480b6e2be1391349b Mon Sep 17 00:00:00 2001 From: Antti Sonkeri Date: Sun, 28 Jul 2024 16:11:41 +0300 Subject: [PATCH] Add example of using tags with CLI runner --- packages/bruno-cli/src/commands/run.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/bruno-cli/src/commands/run.js b/packages/bruno-cli/src/commands/run.js index ca3e315dd..1adde3e1e 100644 --- a/packages/bruno-cli/src/commands/run.js +++ b/packages/bruno-cli/src/commands/run.js @@ -250,7 +250,11 @@ const builder = async (yargs) => { ) .example('$0 run --client-cert-config client-cert-config.json', 'Run a request with Client certificate configurations') .example('$0 run folder --delay delayInMs', 'Run a folder with given miliseconds delay between each requests.') - .example('$0 run --noproxy', 'Run requests with system proxy disabled'); + .example('$0 run --noproxy', 'Run requests with system proxy disabled') + .example( + '$0 run folder --tags=hello,world --exclude-tags=skip', + 'Run only requests with tags "hello" or "world" and exclude any request with tag "skip".' + ); }; const handler = async function (argv) {