CI build: Different mysql testing db

This commit is contained in:
Griatch 2023-12-19 00:05:44 +01:00
parent 694fe8468d
commit 00f70b1eb9
2 changed files with 8 additions and 1 deletions

View file

@ -50,6 +50,13 @@ DATABASES = {
"charset": "utf8mb4",
"init_command": "set collation_connection=utf8mb4_unicode_ci",
},
"TEST": {
"NAME": "testdb",
"OPTIONS": {
"charset": "utf8mb4",
"init_command": "set collation_connection=utf8mb4_unicode_ci",
},
},
}
}