core: add test for Markdown syntax

Signed-off-by: Skia <skia@libskia.so>
This commit is contained in:
Skia
2017-08-24 16:29:40 +02:00
parent 30f650ecce
commit 0d5595c683
8 changed files with 350 additions and 56 deletions

View File

@ -36,6 +36,7 @@ https://docs.djangoproject.com/en/1.8/ref/settings/
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os
import sys
import binascii
from django.utils.translation import ugettext_lazy as _
@ -569,9 +570,9 @@ SITH_MAILING_FETCH_KEY = 'IloveMails'
try:
from .settings_custom import *
print("Custom settings imported")
print("Custom settings imported", file=sys.stderr)
except:
print("Custom settings failed")
print("Custom settings failed", file=sys.stderr)
if DEBUG:
INSTALLED_APPS += ("debug_toolbar",)