Tests: always display all warnings

WebHost: fix a warning about new cache names
This commit is contained in:
Fabian Dill 2022-06-09 13:16:10 +02:00 committed by Fabian Dill
parent d81dbbd951
commit 5be00e28dd
2 changed files with 3 additions and 1 deletions

View File

@ -46,7 +46,7 @@ app.config["PONY"] = {
'create_db': True
}
app.config["MAX_ROLL"] = 20
app.config["CACHE_TYPE"] = "simple"
app.config["CACHE_TYPE"] = "flask_caching.backends.SimpleCache"
app.config["JSON_AS_ASCII"] = False
app.config["PATCH_TARGET"] = "archipelago.gg"

View File

@ -0,0 +1,2 @@
import warnings
warnings.simplefilter("always")