From bb7d75daff315049bb34be347e732b4cd0e3373b Mon Sep 17 00:00:00 2001 From: "ueha.ayumu" Date: Mon, 11 Oct 2021 06:34:26 +0000 Subject: [PATCH] Revert "Skip some FTs failed due to heat bug" This reverts commit 5eced54d7fb6f35a480d93e59f67a711d79403a9. The heat bug has been fixed in patch [1] and merged, so remove the added skips. [1] https://review.opendev.org/c/openstack/heat/+/813124 Change-Id: Id05eae9e5141d8baeea3c5336062a41e9d6366f5 --- .../functional/legacy/vnfm/test_vnf_placement_policy.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tacker/tests/functional/legacy/vnfm/test_vnf_placement_policy.py b/tacker/tests/functional/legacy/vnfm/test_vnf_placement_policy.py index de59acb61..28bb09e2d 100644 --- a/tacker/tests/functional/legacy/vnfm/test_vnf_placement_policy.py +++ b/tacker/tests/functional/legacy/vnfm/test_vnf_placement_policy.py @@ -11,7 +11,6 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -import unittest import yaml from tackerclient.common import exceptions @@ -93,8 +92,6 @@ class VnfTestCreate(base.BaseTackerTest): distinct_comp_hosts = set(compute_hosts) self.assertEqual(len(compute_hosts), len(distinct_comp_hosts)) - @unittest.skip("Until BUG " - "https://storyboard.openstack.org/#!/story/2009164") def test_create_delete_vnf_with_placement_policy_affinity(self): self._test_create_delete_vnf( vnf_name='test_vnf_with_placement_policy_affinity', @@ -102,8 +99,6 @@ class VnfTestCreate(base.BaseTackerTest): vdu_name='affinity-vdu', placement_policy='affinity') - @unittest.skip("Until BUG " - "https://storyboard.openstack.org/#!/story/2009164") def test_create_delete_vnf_with_placement_policy_anti_affinity(self): self._test_create_delete_vnf( vnf_name='test_vnf_with_placement_policy_anti_affinity', @@ -111,8 +106,6 @@ class VnfTestCreate(base.BaseTackerTest): vdu_name='anti-affinity-vdu-multi-comp-nodes', placement_policy='anti-affinity') - @unittest.skip("Until BUG " - "https://storyboard.openstack.org/#!/story/2009164") def test_vnf_with_policy_anti_affinity_insufficient_comp_nodes(self): self._test_create_delete_vnf( vnf_name='test_vnf_anti_affinity_insufficient_comp_nodes',