"""
Test settings to use SQLite for testing instead of MySQL.
This avoids migration issues with the test database.
"""

from branch_system.settings import *

# Override database settings for testing
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': ':memory:',
    }
}
