Revert CI build changes for more testing
This commit is contained in:
parent
20061e9e5c
commit
d34332cd1b
3 changed files with 4 additions and 4 deletions
2
.github/actions/setup-database/action.yml
vendored
2
.github/actions/setup-database/action.yml
vendored
|
|
@ -48,7 +48,7 @@ runs:
|
||||||
# collation server: "utf8mb4_unicode_ci"
|
# collation server: "utf8mb4_unicode_ci"
|
||||||
character set server: "utf8"
|
character set server: "utf8"
|
||||||
collation server: "utf8_general_ci"
|
collation server: "utf8_general_ci"
|
||||||
mysql database: "testdb"
|
mysql database: "evennia"
|
||||||
mysql user: "evennia"
|
mysql user: "evennia"
|
||||||
mysql password: "password"
|
mysql password: "password"
|
||||||
mysql root password: root_password
|
mysql root password: root_password
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ jobs:
|
||||||
timeout-minutes: 35
|
timeout-minutes: 35
|
||||||
|
|
||||||
env:
|
env:
|
||||||
UNIT_TEST_SETTINGS: "--settings=settings --timing"
|
UNIT_TEST_SETTINGS: "--settings=settings --keepdb --parallel 4 --timing"
|
||||||
COVERAGE_TEST_SETTINGS: "--settings=settings --timing"
|
COVERAGE_TEST_SETTINGS: "--settings=settings --timing"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
|
||||||
4
.github/workflows/mysql_settings.py
vendored
4
.github/workflows/mysql_settings.py
vendored
|
|
@ -41,7 +41,7 @@ SERVERNAME = "testing_mygame"
|
||||||
DATABASES = {
|
DATABASES = {
|
||||||
"default": {
|
"default": {
|
||||||
"ENGINE": "django.db.backends.mysql",
|
"ENGINE": "django.db.backends.mysql",
|
||||||
"NAME": "evennia1",
|
"NAME": "evennia",
|
||||||
"USER": "evennia",
|
"USER": "evennia",
|
||||||
"PASSWORD": "password",
|
"PASSWORD": "password",
|
||||||
"HOST": "127.0.0.1",
|
"HOST": "127.0.0.1",
|
||||||
|
|
@ -51,7 +51,7 @@ DATABASES = {
|
||||||
"init_command": "set collation_connection=utf8mb4_unicode_ci",
|
"init_command": "set collation_connection=utf8mb4_unicode_ci",
|
||||||
},
|
},
|
||||||
"TEST": {
|
"TEST": {
|
||||||
"NAME": "evennia1",
|
"NAME": "evennia",
|
||||||
"OPTIONS": {
|
"OPTIONS": {
|
||||||
"charset": "utf8mb4",
|
"charset": "utf8mb4",
|
||||||
"init_command": "set collation_connection=utf8mb4_unicode_ci",
|
"init_command": "set collation_connection=utf8mb4_unicode_ci",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue