from .base import *  # noqa: F403
from .base import RQ_QUEUES

DEBUG = False

# RQ runs synchronously in CI (tasks execute inline, no worker needed)
# This is already handled by base.py checking for 'test' in sys.argv,
# but we explicitly set it here for clarity
for queue_config in RQ_QUEUES.values():
    queue_config["ASYNC"] = False

PASSWORD_HASHERS = [
    "django.contrib.auth.hashers.MD5PasswordHasher",
]
