Add test for unsupported image format (tif) and add additional OpenID test

This commit is contained in:
Oliver Falk
2018-05-23 10:37:54 +02:00
parent 088be58723
commit a88d5359d0
2 changed files with 16 additions and 11 deletions

View File

@@ -3,6 +3,11 @@ Django settings for ivatar project.
"""
import os
import logging
log_level = logging.DEBUG
logger = logging.getLogger('ivatar')
logger.setLevel(log_level)
PACKAGE_ROOT = os.path.abspath(os.path.dirname(__file__))
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))