We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 239fa97 commit d8e3e32Copy full SHA for d8e3e32
1 file changed
ietf/utils/test_runner.py
@@ -87,6 +87,9 @@ def run_tests_1(test_labels, *args, **kwargs):
87
if settings.SITE_ID != 1:
88
print " Changing SITE_ID to '1' during testing."
89
settings.SITE_ID = 1
90
+ if settings.TEMPLATE_STRING_IF_INVALID != '':
91
+ print " Changing TEMPLATE_STRING_IF_INVALID to '' during testing."
92
+ settings.TEMPLATE_STRING_IF_INVALID = ''
93
assert(not settings.IDTRACKER_BASE_URL.endswith('/'))
94
kwargs["verbosity"] = kwargs["verbosity"]
95
return django_run_tests(test_labels, *args, **kwargs)
0 commit comments