Projet

Général

Profil

0001-tests-shorten-database-name-50075.patch

Thomas Noël, 12 janvier 2021 14:04

Télécharger (734 octets)

Voir les différences:

Subject: [PATCH] tests: shorten database name (#50075)

 tests/settings.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
tests/settings.py
2 2
    'default': {
3 3
        'ENGINE': os.environ.get('DB_ENGINE', 'django.db.backends.sqlite3'),
4 4
        'NAME': 'combo-test-%s' % os.environ.get(
5
                "BRANCH_NAME", "").replace('/', '-')[:63]
5
                "BRANCH_NAME", "").replace('/', '-')[:55]
6 6
    }
7 7
}
8 8

  
9
-