tests: use unique database name (#13083)

This commit is contained in:
Frédéric Péters 2016-09-06 15:54:54 +02:00
parent 85b69ea34c
commit 198d782e49
2 changed files with 3 additions and 1 deletions

View File

@ -12,6 +12,8 @@ SRCDIR=`PATH=$NONPATH python -c 'from distutils.sysconfig import get_python_lib;
rm -f $DSTDIR/lasso.*
rm -f $DSTDIR/_lasso.*
SRCDIR=/usr/lib/python2.7/dist-packages/
# Link
ln -sv $SRCDIR/lasso.py $DSTDIR
ln -sv $SRCDIR/_lasso.* $DSTDIR

View File

@ -5,7 +5,7 @@ DATABASES = {
'default': {
'ENGINE': 'django.db.backends.%s' % os.environ['DB_ENGINE'],
'TEST': {
'NAME': 'a2-test',
'NAME': 'a2-kerberos-test',
},
}
}