Some more tests
This commit is contained in:
parent
8bc14a15e1
commit
489205a826
2 changed files with 5 additions and 5 deletions
4
.github/workflows/pythonpackage.yml
vendored
4
.github/workflows/pythonpackage.yml
vendored
|
|
@ -18,7 +18,7 @@ jobs:
|
||||||
python-version: [3.7, 3.8]
|
python-version: [3.7, 3.8]
|
||||||
# TODO: mysql disabled, not able to connect to it so far
|
# TODO: mysql disabled, not able to connect to it so far
|
||||||
TESTING_DB: ['sqlite3', 'postgresql', 'mysql']
|
TESTING_DB: ['sqlite3', 'postgresql', 'mysql']
|
||||||
# fail-fast: false
|
fail-fast: true
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
|
|
@ -39,7 +39,7 @@ jobs:
|
||||||
host port: 3306
|
host port: 3306
|
||||||
character set server: 'utf8mb4'
|
character set server: 'utf8mb4'
|
||||||
collation server: 'utf8mb4_unicode_ci'
|
collation server: 'utf8mb4_unicode_ci'
|
||||||
mysql database: 'default'
|
mysql database: 'evennia'
|
||||||
mysql user: 'evennia'
|
mysql user: 'evennia'
|
||||||
mysql password: 'password'
|
mysql password: 'password'
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ DATABASES = {
|
||||||
"USER": "evennia",
|
"USER": "evennia",
|
||||||
"PASSWORD": "password",
|
"PASSWORD": "password",
|
||||||
"HOST": "127.0.0.1",
|
"HOST": "127.0.0.1",
|
||||||
"PORT": "3306", # use default port
|
"PORT": "", # use default port
|
||||||
"OPTIONS": {
|
"OPTIONS": {
|
||||||
"charset": "utf8mb4",
|
"charset": "utf8mb4",
|
||||||
"init_command": "set collation_connection=utf8mb4_unicode_ci",
|
"init_command": "set collation_connection=utf8mb4_unicode_ci",
|
||||||
|
|
@ -54,8 +54,8 @@ DATABASES = {
|
||||||
"NAME": "default",
|
"NAME": "default",
|
||||||
"OPTIONS": {
|
"OPTIONS": {
|
||||||
"charset": "utf8mb4",
|
"charset": "utf8mb4",
|
||||||
# 'init_command': 'set collation_connection=utf8mb4_unicode_ci'
|
'init_command': 'set collation_connection=utf8mb4_unicode_ci'
|
||||||
"init_command": "SET NAMES 'utf8mb4'",
|
# "init_command": "SET NAMES 'utf8mb4'",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue