From 07ef3f6a956c8c6b409ddfad35e81b3e38bd5438 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Tue, 12 Feb 2019 10:39:46 +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 0000000..11c1892 --- /dev/null +++ b/tests/settings.py @@ -0,0 +1,3 @@ +TIME_ZONE = 'Europe/Paris' +LANGUAGE_CODE = 'en-us' +ALLOWED_HOSTS = ['*']