tox.ini: remove DB_ENGINE

This commit is contained in:
Benjamin Dauvergne 2020-05-15 15:59:07 +02:00
parent 2cda189d0f
commit 3ed80352fc
2 changed files with 2 additions and 3 deletions

View File

@ -3,9 +3,9 @@ import os
LANGUAGE_CODE = 'en'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.%s' % os.environ['DB_ENGINE'],
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'TEST': {
'NAME': 'a2-kerberos-test',
'NAME': 'authentic2-auth-kerberos',
},
}
}

View File

@ -23,7 +23,6 @@ envlist =
setenv =
AUTHENTIC2_SETTINGS_FILE=tests/settings.py
DJANGO_SETTINGS_MODULE=authentic2.settings
DB_ENGINE=postgresql_psycopg2
JUNIT={tty::-o junit_suite_name={envname} --junit-xml=junit-{envname}.xml}
COVERAGE={tty::--junitxml=test_{envname}_results.xml --cov-report xml --cov-report html --cov=src/ --cov-config .coveragerc}