From 932100abf35b59591d660b4da5c06407f05e9938 Mon Sep 17 00:00:00 2001 From: Yaroslav Lobankov Date: Sun, 3 Jul 2016 16:50:12 +0300 Subject: [PATCH] [Verify] Adding '--skip-list' arg to `rally verify start` cmd Sometimes we need to run the full test suite without some tests. Now the new '--skip-list' argument allows us to do it. In order to skip the desired tests we just need to list the tests in some file and provide the '--skip-list' argument with the path to the file: rally verify start --skip-list /path/to/the/file Also, missing messages about incompatibility of arguments were added. Change-Id: I882bfacd2e39bed2b54af4092752f642c964975a --- etc/rally.bash_completion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/rally.bash_completion b/etc/rally.bash_completion index e9b38d36..4f6fae9b 100644 --- a/etc/rally.bash_completion +++ b/etc/rally.bash_completion @@ -58,7 +58,7 @@ _rally() OPTS["verify_results"]="--uuid --html --json --output-file" OPTS["verify_show"]="--uuid --sort-by --detailed" OPTS["verify_showconfig"]="--deployment" - OPTS["verify_start"]="--deployment --set --regex --tests-file --tempest-config --xfails-file --no-use --system-wide --concurrency --failing" + OPTS["verify_start"]="--deployment --set --regex --tests-file --skip-list --tempest-config --xfails-file --no-use --system-wide --concurrency --failing" OPTS["verify_uninstall"]="--deployment" OPTS["verify_use"]="--uuid"