From c6b61989267e2b8040ff54f2c7d061d93d7081e5 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Sun, 14 Jul 2013 17:44:28 -0400 Subject: [PATCH] Update list of TODOs --- awx/main/management/commands/inventory_import.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/awx/main/management/commands/inventory_import.py b/awx/main/management/commands/inventory_import.py index 9201d06347..f8bfcedb4d 100644 --- a/awx/main/management/commands/inventory_import.py +++ b/awx/main/management/commands/inventory_import.py @@ -582,7 +582,11 @@ class Command(BaseCommand): db_child = Group.objects.get(inventory=inventory, name=mem_child_group.name) db_group.children.add(db_child) db_group.save() - + + # TODO: test that UI can display what we import + # TODO: test overwrite and non-overwrite modes (and --overwrite-vars) + # FIXME: also test that variables are valid + LOGGER.info("inventory import complete, %s, id=%s" % (inventory.name, inventory.id))