tests: shorten database name (#50075)

This commit is contained in:
Thomas NOËL 2021-01-12 14:04:22 +01:00
parent 7d61835c25
commit 37eebfff08
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ DATABASES = {
'default': {
'ENGINE': os.environ.get('DB_ENGINE', 'django.db.backends.sqlite3'),
'NAME': 'combo-test-%s' % os.environ.get(
"BRANCH_NAME", "").replace('/', '-')[:63]
"BRANCH_NAME", "").replace('/', '-')[:55]
}
}