From 2a0b445488d7fc43bccc43861e2af3e4a36e1db4 Mon Sep 17 00:00:00 2001 From: Akita Noek Date: Tue, 19 Apr 2016 13:21:37 -0400 Subject: [PATCH] Remove git project configuration from project test fixtures Having this in here causes us to go out and pull down the repo whenever we run a test, adds around 9 seconds per test on a good connection.. if we need real data in here, we should figure out how to get it locally --- awx/main/tests/functional/conftest.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/awx/main/tests/functional/conftest.py b/awx/main/tests/functional/conftest.py index 97e31c3269..4b481895d6 100644 --- a/awx/main/tests/functional/conftest.py +++ b/awx/main/tests/functional/conftest.py @@ -106,8 +106,6 @@ def team_member(user, team): def project(instance, organization): prj = Project.objects.create(name="test-proj", description="test-proj-desc", - scm_type="git", - scm_url="https://github.com/jlaska/ansible-playbooks", organization=organization ) return prj @@ -120,8 +118,6 @@ def project_factory(organization): except Project.DoesNotExist: prj = Project.objects.create(name=name, description="description for " + name, - scm_type="git", - scm_url="https://github.com/jlaska/ansible-playbooks", organization=organization ) return prj