Test Failed
Push — main ( 3c00a2...7c8c49 )
by torrua
02:08
created

tests.settings   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 11
dl 0
loc 14
rs 10
c 0
b 0
f 0
wmc 0
1
"""Settings module for test app."""
2
3
ENV = "development"
4
TESTING = True
5
SQLALCHEMY_DATABASE_URI = "sqlite://"
6
SECRET_KEY = "no-secrets-for-testing"
7
BCRYPT_LOG_ROUNDS = (
8
    4  # For faster tests; needs at least 4 to avoid "ValueError: Invalid rounds"
9
)
10
DEBUG_TB_ENABLED = False
11
CACHE_TYPE = "simple"
12
SQLALCHEMY_TRACK_MODIFICATIONS = False
13
WTF_CSRF_ENABLED = False
14