From 962eae271987c0480ee1e6964cd0f13ba15b99e9 Mon Sep 17 00:00:00 2001 From: Ruslan Khozinov Date: Tue, 16 Aug 2016 17:40:02 +0300 Subject: [PATCH] Continious Integration related changes The GCS_PLUGIN_RPM variable is doesn't coincides with our standard naming for a plugin package (GCS_PLUGIN_PATH) Change-Id: Icecf2c24051f9053d93b4bec9b1c71292255d6f5 --- plugin_test/helpers/gcs_base.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugin_test/helpers/gcs_base.py b/plugin_test/helpers/gcs_base.py index 78e4c94..abeabe8 100644 --- a/plugin_test/helpers/gcs_base.py +++ b/plugin_test/helpers/gcs_base.py @@ -48,10 +48,11 @@ class GcsTestBase(TestBasic): """Method designed to install plugin on cluster.""" master_remote = self.get_remote('master') utils.upload_tarball(master_remote.host, - os.environ['GCS_PLUGIN_RPM'], + os.environ['GCS_PLUGIN_PATH'], '/var') utils.install_plugin_check_code( - master_remote.host, os.path.basename(os.environ['GCS_PLUGIN_RPM'])) + master_remote.host, + os.path.basename(os.environ['GCS_PLUGIN_PATH'])) def verify_defaults(self, cluster_id): """Method designed to verify plugin default values."""