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
This commit is contained in:
Ruslan Khozinov 2016-08-16 17:40:02 +03:00
parent db07e434db
commit 962eae2719
1 changed files with 3 additions and 2 deletions

View File

@ -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."""