Skip to content

Commit 8b067fc

Browse files
committed
fix:test settings
1 parent 7ffe7ef commit 8b067fc

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

scheduler/tests/test_settings.py

+5-8
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@
66

77
settings.SCHEDULER_QUEUES = {
88
"default": {"HOST": "localhost", "PORT": 6379, "DB": 0, "DEFAULT_TIMEOUT": 500},
9-
"test": {
10-
"HOST": "localhost",
11-
"PORT": 1,
12-
"DB": 1,
13-
},
9+
"test": {"HOST": "localhost", "PORT": 1, "DB": 1},
1410
"sentinel": {
1511
"SENTINELS": [("localhost", 26736), ("localhost", 26737)],
1612
"MASTER_NAME": "testmaster",
@@ -93,7 +89,8 @@
9389
"DEFAULT_TIMEOUT": 400,
9490
},
9591
}
96-
settings.SCHEDULER_CONFIG = dict(
97-
FAKEREDIS=(os.getenv("FAKEREDIS", "False") == "True"),
98-
)
92+
if os.getenv("FAKEREDIS", "False") == "True":
93+
for name, queue_settings in settings.SCHEDULER_QUEUES:
94+
queue_settings["BROKER"] = "fakeredis"
95+
9996
conf_settings()

0 commit comments

Comments
 (0)