Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save andromedarabbit/f240085e55fe609ce63a to your computer and use it in GitHub Desktop.
Save andromedarabbit/f240085e55fe609ce63a to your computer and use it in GitHub Desktop.
Check if Django is in the test mode
from django.core import mail
@property
is_django_in_test_mode():
return hasattr(mail, 'outbox')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment