mirror of
https://github.com/Hopiu/wagtail-modeltranslation.git
synced 2026-05-10 16:24:49 +00:00
6 lines
203 B
Python
Executable file
6 lines
203 B
Python
Executable file
"""
|
|
Get test settings in dict format (for use with settings_override).
|
|
"""
|
|
from . import settings as _settings
|
|
|
|
TEST_SETTINGS = dict((k, getattr(_settings, k)) for k in dir(_settings) if k == k.upper())
|