From ab4602e441a72a1696206c3e3a683074f5b2b6c1 Mon Sep 17 00:00:00 2001 From: Yaroslav Lobankov Date: Tue, 29 Dec 2015 11:49:41 +0300 Subject: [PATCH] [Verify] Deprecating --no-tempest-venv for `rally verify [re]install` We should keep consistency in arguments between commands. So this patch is intended to deprecate --no-tempest-venv in favor of --system-wide like it is in `rally verify start`. Now if we execute `rally verify [re]install --help`, we will see the following warning: $ rally verify install --help ... --system-wide Don't create a virtual env for Tempest. Take notice that all Tempest requirements have to be already installed in the local env! --no-tempest-venv [Deprecated since Rally 0.2.0] Use --system-wide instead ... Change-Id: I5c1a9c5f917d4dff95a79e826d598ed07ea3de19 --- etc/rally.bash_completion | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/rally.bash_completion b/etc/rally.bash_completion index 5ee9ecef..e6b3b831 100644 --- a/etc/rally.bash_completion +++ b/etc/rally.bash_completion @@ -50,9 +50,9 @@ _rally() OPTS["verify_detailed"]="--uuid --sort-by" OPTS["verify_genconfig"]="--deployment --tempest-config --override" OPTS["verify_import"]="--deployment --set --file --no-use" - OPTS["verify_install"]="--deployment --source --no-tempest-venv" + OPTS["verify_install"]="--deployment --source --system-wide" OPTS["verify_list"]="" - OPTS["verify_reinstall"]="--deployment --tempest-config --source --no-tempest-venv" + OPTS["verify_reinstall"]="--deployment --tempest-config --source --system-wide" OPTS["verify_results"]="--uuid --html --json --output-file" OPTS["verify_show"]="--uuid --sort-by --detailed" OPTS["verify_showconfig"]="--deployment"