Revert CI experiments

This commit is contained in:
Griatch 2024-06-27 22:13:40 +02:00
parent 90cd9e8308
commit 609b646e45
4 changed files with 24 additions and 29 deletions

View file

@ -43,20 +43,20 @@ DATABASES = {
"ENGINE": "django.db.backends.mysql",
"NAME": "evennia",
"USER": "evennia",
"PASSWORD": "evennia",
"HOST": os.environ.get("MYSQL_HOST", "127.0.0.1"),
"PORT": os.environ.get("MYSQL_PORT", "3306"),
"PASSWORD": "password",
"HOST": "127.0.0.1",
"PORT": "", # use default port
"OPTIONS": {
"charset": "utf8mb4",
"init_command": "set collation_connection=utf8mb4_unicode_ci",
},
# "TEST": {
# "NAME": "evennia",
# "OPTIONS": {
# "charset": "utf8mb4",
# "init_command": "set collation_connection=utf8mb4_unicode_ci",
# },
# },
"charset": "utf8mb4",
"init_command": "set collation_connection=utf8mb4_unicode_ci",
},
"TEST": {
"NAME": "evennia",
"OPTIONS": {
"charset": "utf8mb4",
"init_command": "set collation_connection=utf8mb4_unicode_ci",
},
},
}
}