From 21e78a1786ce5e234ceba21a684fd91c8f8ce2ca Mon Sep 17 00:00:00 2001 From: Ken'ichi Ohmichi Date: Wed, 31 Aug 2016 16:49:28 -0700 Subject: [PATCH] Remove 'scenario' from the comment of Tempest run On Tempest side, some scenario tests are smoke tests, but all scenario tests don't have to be smoke. Grenade just runs smoke tests. So current comment seems misleading, this patch removes the word. Change-Id: Iaec4106c1a89d34930b0962865e96fb622715264 --- grenade.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grenade.sh b/grenade.sh index 2d18c991..a2fc3f20 100755 --- a/grenade.sh +++ b/grenade.sh @@ -320,7 +320,7 @@ if [[ "$RUN_TARGET" == "True" ]]; then # Validate the upgrade if [[ "$TARGET_RUN_SMOKE" == "True" ]]; then - echo_summary "Running tempest scenario and smoke tests" + echo_summary "Running tempest smoke tests" cd $TARGET_RELEASE_DIR/tempest tox -esmoke -- --concurrency=$TEMPEST_CONCURRENCY stop $STOP run-smoke 330