From 690d1cb8d0341ac71613f6bb93f0793335ec6dfd Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sun, 22 Dec 2013 11:36:49 +0100 Subject: [PATCH] Made AppConfig importable from django.apps. It is a public API. --- django/apps/__init__.py | 1 + tests/test_runner/tests.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/django/apps/__init__.py b/django/apps/__init__.py index 0384b1257d..a1193eafcc 100644 --- a/django/apps/__init__.py +++ b/django/apps/__init__.py @@ -1 +1,2 @@ +from .base import AppConfig # NOQA from .cache import app_cache, UnavailableApp # NOQA diff --git a/tests/test_runner/tests.py b/tests/test_runner/tests.py index 5393ea75a2..0daf4ab3b7 100644 --- a/tests/test_runner/tests.py +++ b/tests/test_runner/tests.py @@ -224,7 +224,7 @@ class ModulesTestsPackages(IgnoreAllDeprecationWarningsMixin, unittest.TestCase) def test_get_tests(self): "Check that the get_tests helper function can find tests in a directory" - from django.apps.base import AppConfig + from django.apps import AppConfig from django.test.simple import get_tests app_config = AppConfig.create('test_runner.valid_app') app_config.import_models({}) @@ -233,7 +233,7 @@ class ModulesTestsPackages(IgnoreAllDeprecationWarningsMixin, unittest.TestCase) def test_import_error(self): "Test for #12658 - Tests with ImportError's shouldn't fail silently" - from django.apps.base import AppConfig + from django.apps import AppConfig from django.test.simple import get_tests app_config = AppConfig.create('test_runner_invalid_app') app_config.import_models({})