1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ihatemoney_ynh.git synced 2024-09-03 19:26:15 +02:00

Do not load user-overriden settings in unit tests.

Loading not versioned settings.py during tests make them less predictable.
That's inspired from django behaviour with DJANGO_SETTING_MODULE environment variable.
This commit is contained in:
Jocelyn Delande 2015-08-18 19:06:24 +02:00
parent a8841f9d3f
commit b685fa74d6
4 changed files with 16 additions and 7 deletions

View file

@ -4,9 +4,3 @@ SQLACHEMY_ECHO = DEBUG
SECRET_KEY = "tralala"
MAIL_DEFAULT_SENDER = ("Budget manager", "budget@notmyidea.org")
APPLICATION_ROOT = '/'
try:
from settings import *
except ImportError:
pass

10
budget/merged_settings.py Normal file
View file

@ -0,0 +1,10 @@
"""
Merges default settings with user-defined settings
"""
from default_settings import *
try:
from settings import *
except ImportError:
pass

View file

@ -1,3 +1,4 @@
import os
import warnings
from flask import Flask, g, request, session
@ -14,7 +15,8 @@ app = Flask(__name__)
def configure():
""" A way to (re)configure the app, specially reset the settings
"""
app.config.from_object("default_settings")
config_obj = os.environ.get('FLASK_SETTINGS_MODULE', 'merged_settings')
app.config.from_object(config_obj)
app.wsgi_app = PrefixedWSGI(app)
# Deprecations

View file

@ -5,9 +5,12 @@ except ImportError:
import unittest # NOQA
import base64
import os
import json
from collections import defaultdict
os.environ['FLASK_SETTINGS_MODULE'] = 'default_settings'
from flask import session
import run