mirror of
https://github.com/PyMySQL/mysqlclient.git
synced 2025-08-15 02:54:29 +08:00
travis: run django-1.11.18 tests (#328)
This commit is contained in:
45
ci/test_mysql.py
Normal file
45
ci/test_mysql.py
Normal file
@ -0,0 +1,45 @@
|
||||
# This is an example test settings file for use with the Django test suite.
|
||||
#
|
||||
# The 'sqlite3' backend requires only the ENGINE setting (an in-
|
||||
# memory database will be used). All other backends will require a
|
||||
# NAME and potentially authentication information. See the
|
||||
# following section in the docs for more information:
|
||||
#
|
||||
# https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/unit-tests/
|
||||
#
|
||||
# The different databases that Django supports behave differently in certain
|
||||
# situations, so it is recommended to run the test suite against as many
|
||||
# database backends as possible. You may want to create a separate settings
|
||||
# file for each of the backends you test against.
|
||||
|
||||
DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.mysql',
|
||||
'NAME': 'django_default',
|
||||
'USER': 'django',
|
||||
'HOST': '127.0.0.1',
|
||||
'PASSWORD': 'secret',
|
||||
'TEST': {
|
||||
'CHARSET': 'utf8mb4',
|
||||
'COLLATION': 'utf8mb4_general_ci',
|
||||
},
|
||||
},
|
||||
'other': {
|
||||
'ENGINE': 'django.db.backends.mysql',
|
||||
'NAME': 'django_other',
|
||||
'USER': 'django',
|
||||
'HOST': '127.0.0.1',
|
||||
'PASSWORD': 'secret',
|
||||
'TEST': {
|
||||
'CHARSET': 'utf8mb4',
|
||||
'COLLATION': 'utf8mb4_general_ci',
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
SECRET_KEY = "django_tests_secret_key"
|
||||
|
||||
# Use a fast hasher to speed up tests.
|
||||
PASSWORD_HASHERS = [
|
||||
'django.contrib.auth.hashers.MD5PasswordHasher',
|
||||
]
|
Reference in New Issue
Block a user