From 65cd74be8e99d06c7861edc5050e34d6444e4d56 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Thu, 19 Dec 2013 15:57:23 +0100 Subject: Stopped iterating on INSTALLED_APPS. Used the app cache's get_app_configs() method instead. --- tests/staticfiles_tests/test_liveserver.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/staticfiles_tests') diff --git a/tests/staticfiles_tests/test_liveserver.py b/tests/staticfiles_tests/test_liveserver.py index 71f4bb89a1..6fa64240cc 100644 --- a/tests/staticfiles_tests/test_liveserver.py +++ b/tests/staticfiles_tests/test_liveserver.py @@ -86,6 +86,9 @@ class StaticLiveServerChecks(LiveServerBase): class StaticLiveServerView(LiveServerBase): + # The test is going to access a static file stored in this application. + available_apps = ['staticfiles_tests.apps.test'] + def urlopen(self, url): return urlopen(self.live_server_url + url) -- cgit v1.3