tests: shorten database name, again (#50075)

This commit is contained in:
Thomas NOËL 2021-01-12 14:28:59 +01:00
parent 37eebfff08
commit 38c7ec1bd6
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('/', '-')[:55]
"BRANCH_NAME", "").replace('/', '-')[:45]
}
}