Skip test_init_failed_processing_hook test

https://review.openstack.org/#/c/337043/ makes this test to fail,
but proper fix in https://review.openstack.org/339457 requires
release of stevedore > 1.15.0 not released yet.

This patch skips the test temporarily until new release is added
in global requirements.

Change-Id: Id23efad9c392fc70470d996e37d378efeaf65491
Partial-Bug: #1600141
This commit is contained in:
Alfredo Moralejo 2016-07-08 13:58:58 +02:00
parent ba0075e0ea
commit 54cfca7a6b
1 changed files with 1 additions and 0 deletions

View File

@ -626,6 +626,7 @@ class TestInit(test_base.BaseTest):
self.service.init()
self.assertFalse(mock_firewall.called)
@unittest.skip('skipped until stevedore > 1.15.0 is released')
@mock.patch.object(main.LOG, 'critical')
def test_init_failed_processing_hook(self, mock_log, mock_node_cache,
mock_get_client, mock_auth,