[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
This commit is contained in:
Yaroslav Lobankov 2016-07-03 16:50:12 +03:00
parent e1f7dfc3d5
commit 932100abf3

View File

@ -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"