diff --git a/pytest_django/plugin.py b/pytest_django/plugin.py index e2b6f120..136c8edd 100644 --- a/pytest_django/plugin.py +++ b/pytest_django/plugin.py @@ -502,7 +502,8 @@ def _dj_autoclear_mailbox() -> None: from django.core import mail - del mail.outbox[:] + if hasattr(mail, "outbox"): + del mail.outbox[:] @pytest.fixture(scope="function")