mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-11 01:41:05 +00:00
Don't try to make a keypair during tests
This commit is contained in:
parent
f20cd3eb15
commit
da936cd7df
3 changed files with 9 additions and 3 deletions
|
@ -118,3 +118,5 @@ AUTO_ADMIN_EMAIL: Optional[str] = None
|
|||
STATOR_TOKEN: Optional[str] = None
|
||||
|
||||
SENTRY_ENABLED = False
|
||||
|
||||
IN_TESTS = False
|
||||
|
|
|
@ -2,3 +2,5 @@ from .base import * # noqa
|
|||
|
||||
# Fixed secret key
|
||||
SECRET_KEY = "testing_secret"
|
||||
|
||||
IN_TESTS = True
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
from django.conf import settings
|
||||
|
||||
|
||||
class UsersConfig(AppConfig):
|
||||
|
@ -6,7 +7,8 @@ class UsersConfig(AppConfig):
|
|||
name = "users"
|
||||
|
||||
def ready(self) -> None:
|
||||
# Generate the server actor keypair if needed
|
||||
from users.models import SystemActor
|
||||
if not settings.IN_TESTS:
|
||||
# Generate the server actor keypair if needed
|
||||
from users.models import SystemActor
|
||||
|
||||
SystemActor.generate_keys_if_needed()
|
||||
SystemActor.generate_keys_if_needed()
|
||||
|
|
Loading…
Reference in a new issue