From c3b978c68142165b7e2194a25555c3e8c6ce01e3 Mon Sep 17 00:00:00 2001 From: Vladimir Khlyunev Date: Fri, 19 Aug 2016 16:21:38 +0300 Subject: [PATCH] Remove passing of password while installing plugin for upgrade Fuel CLI uses different argument for username in 7.0 and 8.0+ releases. Now password in astute.yaml is updating during master node setup so it's possible to remove login and password from the command. Change-Id: Ida21eff98216600e65f219770af474a3bd6680c3 --- .../tests/tests_upgrade/test_data_driven_upgrade_plugin.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/fuelweb_test/tests/tests_upgrade/test_data_driven_upgrade_plugin.py b/fuelweb_test/tests/tests_upgrade/test_data_driven_upgrade_plugin.py index 961d7472e..d52619402 100644 --- a/fuelweb_test/tests/tests_upgrade/test_data_driven_upgrade_plugin.py +++ b/fuelweb_test/tests/tests_upgrade/test_data_driven_upgrade_plugin.py @@ -74,11 +74,8 @@ class UpgradePlugin(DataDrivenUpgradeBase): url=settings.EXAMPLE_V3_PLUGIN_REMOTE_URL, location=example_plugin_remote_name)) admin_remote.check_call( - "fuel --username={user} --password {password} " - "plugins --install {location} ".format( - location=example_plugin_remote_name, - user=settings.KEYSTONE_CREDS['username'], - password=settings.KEYSTONE_CREDS['password'])) + "fuel plugins --install {location} ".format( + location=example_plugin_remote_name)) self.show_step(2) self.show_step(3)