From 7e0534bd344d6fe443ab246c9d57a8e3c950d876 Mon Sep 17 00:00:00 2001 From: Kevin Kubasik Date: Tue, 23 Jun 2009 07:22:59 +0000 Subject: [PATCH] [gsoc2009-testing] Adding a debugging statement git-svn-id: http://code.djangoproject.com/svn/django/branches/soc2009/test-improvements@11088 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/test/windmill_tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/test/windmill_tests.py b/django/test/windmill_tests.py index 569f13a014..e630a43b00 100644 --- a/django/test/windmill_tests.py +++ b/django/test/windmill_tests.py @@ -92,6 +92,7 @@ def start_test_server(self, address='localhost', port=8000): """Creates a live test server object (instance of WSGIServer).""" self.server_thread = TestServerThread(address, port) if hasattr(self, 'fixtures'): + print 'loading fixtures %s' % self.fixtures self.server_thread.__setattr__('fixtures', self.fixtures) self.server_thread.start() self.server_thread.started.wait()