[verification] Introduce rally verify show-verifier command

We have a lot of information about verifiers and main horizontal table from
``rally verify list-verifiers`` command could not include all of it.

Co-Authored-By: Yaroslav Lobankov <ylobankov@mirantis.com>

Change-Id: If425e9c373483fa092ebbcefdaf9a46173275c8a
This commit is contained in:
Andrey Kurilin 2017-01-20 15:04:16 +02:00 committed by Yaroslav Lobankov
parent aa109920e4
commit 639c44587b
2 changed files with 4 additions and 0 deletions

View File

@ -57,6 +57,7 @@ _rally()
OPTS["verify_report"]="--uuid --type --to --open"
OPTS["verify_rerun"]="--uuid --deployment-id --failed"
OPTS["verify_show"]="--uuid --sort-by --detailed"
OPTS["verify_show-verifier"]="--id"
OPTS["verify_start"]="--id --deployment-id --tag --pattern --concurrency --load-list --skip-list --xfail-list --detailed --no-use"
OPTS["verify_update-verifier"]="--id --update-venv --version --system-wide --no-system-wide"
OPTS["verify_use"]="--uuid"

View File

@ -229,6 +229,9 @@ def main():
"verify create-verifier --type %s --name my-verifier --source %s"
% (VERIFIER_TYPE, VERIFIER_SOURCE))
# Show the verifier
render_vars["show_verifier"] = call_rally("verify show-verifier")
# List verifiers
render_vars["list_verifiers"] = call_rally("verify list-verifiers")