From 6b5920978f17c0e427ccc9e5e80ed81f9d0b7aa3 Mon Sep 17 00:00:00 2001 From: Lila Date: Fri, 18 Oct 2024 11:16:11 -0400 Subject: [PATCH] Removed skip if none in test_inventory_update_injected_content as it did not seem to be being hit locally or in devel --- awx/main/tests/functional/test_inventory_source_injectors.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/awx/main/tests/functional/test_inventory_source_injectors.py b/awx/main/tests/functional/test_inventory_source_injectors.py index 4cb023411222..74879b57fe85 100644 --- a/awx/main/tests/functional/test_inventory_source_injectors.py +++ b/awx/main/tests/functional/test_inventory_source_injectors.py @@ -202,8 +202,6 @@ def test_inventory_update_injected_content(this_kind, inventory, fake_credential ExecutionEnvironment.objects.create(name='Default Job EE', managed=False) injector = InventorySource.injectors[this_kind] - if injector.plugin_name in (None, 'constructed'): - pytest.skip('Use of inventory plugin is not enabled for this source') src_vars = dict(base_source_var='value_of_var') src_vars['plugin'] = injector.get_proper_name()