From 450e6f28856cf05cb652c714641e5fee2d58e8f7 Mon Sep 17 00:00:00 2001 From: Akita Noek Date: Tue, 19 Apr 2016 13:25:26 -0400 Subject: [PATCH] Removed git configuration from org count projects Avoids unnecessary cloning of said git repo, runs in 4 seconds now instead of 50 seconds --- awx/main/tests/functional/api/test_organization_counts.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/awx/main/tests/functional/api/test_organization_counts.py b/awx/main/tests/functional/api/test_organization_counts.py index 5aaef06b3d..bc6df133d7 100644 --- a/awx/main/tests/functional/api/test_organization_counts.py +++ b/awx/main/tests/functional/api/test_organization_counts.py @@ -19,9 +19,7 @@ def organization_resource_creator(organization, user): inventory = organization.inventories.create(name="associated-inv %s" % i) for i in range(projects): organization.projects.create(name="test-proj %s" % i, - description="test-proj-desc", - scm_type="git", - scm_url="https://github.com/jlaska/ansible-playbooks") + description="test-proj-desc") # Mix up the inventories and projects used by the job templates i_proj = 0 i_inv = 0