From c5569a783cf7e4c652a4467f540a0f67d444e65a Mon Sep 17 00:00:00 2001 From: Yaroslav Lobankov Date: Tue, 9 Aug 2016 12:04:43 +0300 Subject: [PATCH] [Verify] Deprecating 'tests-file' and 'xfails-file' args This patch deprecates the following args for `rally verify start` cmd: Old New tests-file -> load-list xfails-file -> xfail-list So now we have consistent args that allow us to manage the workflow for a certain list of tests: 1. Arg 'load-list' - Run tests listed in the named file 2. Arg 'skip-list' - Skip run of tests listed in the named file 3. Arg 'xfail-list' - Consider tests listed in the named file as expected failures Change-Id: Ida1252172c7edf7e7dd5350123a52c085867ba0f --- 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 5e035db0..b7676673 100644 --- a/etc/rally.bash_completion +++ b/etc/rally.bash_completion @@ -59,7 +59,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 --skip-list --tempest-config --xfails-file --no-use --system-wide --concurrency --failing" + OPTS["verify_start"]="--deployment --set --regex --load-list --skip-list --tempest-config --xfail-list --no-use --system-wide --concurrency --failing" OPTS["verify_uninstall"]="--deployment" OPTS["verify_uninstallplugin"]="--deployment --repo-name --system-wide" OPTS["verify_use"]="--uuid"