From 7ed6f2106c2f92b7b83bc9a47229e4e6450fd62a Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Thu, 8 Oct 2015 16:56:28 -0500 Subject: [PATCH] Issue #712. Move FIXTURES_PATH into module level constant. --- webcompat/helpers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webcompat/helpers.py b/webcompat/helpers.py index 747728fd9..750f0967a 100644 --- a/webcompat/helpers.py +++ b/webcompat/helpers.py @@ -23,7 +23,9 @@ HOST_WHITELIST = ('webcompat.com', 'staging.webcompat.com', '127.0.0.1', 'localhost') JSON_MIME = 'application/json' +FIXTURES_PATH = os.getcwd() +'/tests/fixtures' STATIC_PATH = os.getcwd() + '/webcompat/static' + cache_dict = {}