diff options
Diffstat (limited to 'django/test/__init__.py')
| -rw-r--r-- | django/test/__init__.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/django/test/__init__.py b/django/test/__init__.py index b65601b12d..f5213301d3 100644 --- a/django/test/__init__.py +++ b/django/test/__init__.py @@ -8,13 +8,14 @@ from django.test.testcases import ( SimpleTestCase, LiveServerTestCase, skipIfDBFeature, skipUnlessDBFeature ) -from django.test.utils import modify_settings, override_settings, override_system_checks +from django.test.utils import (ignore_warnings, modify_settings, + override_settings, override_system_checks) __all__ = [ 'Client', 'RequestFactory', 'TestCase', 'TransactionTestCase', 'SimpleTestCase', 'LiveServerTestCase', 'skipIfDBFeature', - 'skipUnlessDBFeature', 'modify_settings', 'override_settings', - 'override_system_checks' + 'skipUnlessDBFeature', 'ignore_warnings', 'modify_settings', + 'override_settings', 'override_system_checks' ] # To simplify Django's test suite; not meant as a public API |
