Replace network verification task with full check

Change-Id: I0abc8c7b5bbbaa2a4f1d987deec8edbdd1256c9b
Closes-Bug: #1584733
This commit is contained in:
Dmitry Kalashnik 2016-05-26 14:08:01 +03:00
parent 1b134d7585
commit 0aacb478e9
2 changed files with 2 additions and 2 deletions

View File

@ -740,7 +740,7 @@ class StopReinstallation(TestBasic):
self._stop_reinstallation(self.fuel_web, cluster_id,
[str(cmp_nailgun['id'])], devops_nodes)
self.fuel_web.run_network_verify(cluster_id)
self.fuel_web.verify_network(cluster_id)
logger.info('Start the reinstallation process again')
NodeReinstallationEnv._reinstall_nodes(
self.fuel_web, cluster_id, [str(cmp_nailgun['id'])])

View File

@ -620,7 +620,7 @@ class UbuntuBootstrap(base_test_case.TestBasic):
# wait for nodes to appear after bootstrap
wait(lambda: len(self.fuel_web.client.list_nodes()) == 3,
timeout=10 * 60)
self.fuel_web.run_network_verify(cluster_id)
self.fuel_web.verify_network(cluster_id)
node = self.fuel_web.get_nailgun_node_by_name("slave-03")
checkers.verify_bootstrap_on_node(node['ip'], os_type="ubuntu")