Skip to content

Commit

Permalink
better test settings
Browse files Browse the repository at this point in the history
  • Loading branch information
LGD-Fr committed Aug 30, 2015
1 parent fad011a commit 443546c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testsettings.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import django.conf.global_settings as DEFAULT_SETTINGS
import os
from django.conf.global_settings import *


BASE_DIR = os.path.dirname(__file__)
Expand All @@ -14,7 +13,7 @@
},
}

TEMPLATE_CONTEXT_PROCESSORS += (
TEMPLATE_CONTEXT_PROCESSORS = DEFAULT_SETTINGS.TEMPLATE_CONTEXT_PROCESSORS + (
'django.core.context_processors.request',
)

Expand Down Expand Up @@ -52,7 +51,8 @@

HTMLVALIDATOR_FAILFAST = True

HTMLVALIDATOR_VNU_URL = 'http://validator.nu/'
# HTMLVALIDATOR_VNU_URL = 'http://validator.nu/'
HTMLVALIDATOR_VNU_URL = 'https://validator.nu/'
# HTMLVALIDATOR_VNU_JAR = '~/dev/dist/vnu.jar'

HTMLVALIDATOR_DUMPDIR = os.path.join(BASE_DIR, 'validation_errors')
Expand Down

0 comments on commit 443546c

Please sign in to comment.