summaryrefslogtreecommitdiffstats
path: root/takahe
diff options
context:
space:
mode:
Diffstat (limited to 'takahe')
-rw-r--r--takahe/settings/base.py2
-rw-r--r--takahe/settings/testing.py2
2 files changed, 4 insertions, 0 deletions
diff --git a/takahe/settings/base.py b/takahe/settings/base.py
index 0ab3035..660ec9f 100644
--- a/takahe/settings/base.py
+++ b/takahe/settings/base.py
@@ -118,3 +118,5 @@ AUTO_ADMIN_EMAIL: Optional[str] = None
STATOR_TOKEN: Optional[str] = None
SENTRY_ENABLED = False
+
+IN_TESTS = False
diff --git a/takahe/settings/testing.py b/takahe/settings/testing.py
index 6527333..7dffa2a 100644
--- a/takahe/settings/testing.py
+++ b/takahe/settings/testing.py
@@ -2,3 +2,5 @@ from .base import * # noqa
# Fixed secret key
SECRET_KEY = "testing_secret"
+
+IN_TESTS = True