From e4ede4dc1c2ac862743115017849c8234346233f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Mon, 1 Jan 2018 13:13:16 +0100 Subject: [PATCH] tests: add custom settings file to allow hosts (#20936) --- tests/settings.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 tests/settings.py diff --git a/tests/settings.py b/tests/settings.py new file mode 100644 index 00000000..11c18924 --- /dev/null +++ b/tests/settings.py @@ -0,0 +1,3 @@ +TIME_ZONE = 'Europe/Paris' +LANGUAGE_CODE = 'en-us' +ALLOWED_HOSTS = ['*'] -- 2.15.1