diff --git a/awx/main/tests/inventory.py b/awx/main/tests/inventory.py index bcd599570c..55e88f1e9a 100644 --- a/awx/main/tests/inventory.py +++ b/awx/main/tests/inventory.py @@ -1561,6 +1561,7 @@ class InventoryUpdatesTest(BaseTransactionTest): def test_update_from_custom_script(self): # Create the inventory script + self.create_test_license_file() inventory_scripts = reverse('api:inventory_script_list') new_script = dict(name="Test", description="Test Script", script=TEST_SIMPLE_INVENTORY_SCRIPT) script_data = self.post(inventory_scripts, data=new_script, expect=201, auth=self.get_super_credentials())