"""Settings for local validation/CI: SQLite + eager Celery, no external services."""
from .base import *  # noqa: F401,F403

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': BASE_DIR / 'test_db.sqlite3',  # noqa: F405
    }
}

# Run tasks inline so the payout pipeline executes without a worker/broker.
CELERY_TASK_ALWAYS_EAGER = True
CELERY_TASK_EAGER_PROPAGATES = True
PAYOUT_STUB_OUTCOME = 'success'
