Projet

Général

Profil

0001-fix-test-db-name-27104.patch

Paul Marillonnet, 08 octobre 2018 16:41

Télécharger (849 octets)

Voir les différences:

Subject: [PATCH] fix test db name (#27104)

 tests/settings.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
tests/settings.py
8 8
DATABASES = {
9 9
    'default': {
10 10
        'ENGINE': 'django.db.backends.' + os.environ.get('DB_ENGINE', 'sqlite3'),
11
        'NAME': 'mellon.sqlite3',
11
        'NAME': 'fargo.sqlite3',
12 12
        'TEST': {
13
            'NAME': 'mellon-test-' + os.environ.get('DB_ENGINE', 'sqlite3'),
13
            'NAME': 'fargo-test-' + os.environ.get('DB_ENGINE', 'sqlite3'),
14 14
        },
15 15
    }
16 16
}
17
-