From 286ca37ebc84b1f7d0960000e195d343045867ec Mon Sep 17 00:00:00 2001
From: Henrik Levkowetz <henrik@levkowetz.com>
Date: Sun, 22 Mar 2015 14:54:06 +0000
Subject: [PATCH] Provide full paths to the *coverage.json files.  - Legacy-Id:
 9321

---
 ietf/settings.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ietf/settings.py b/ietf/settings.py
index bef98bc9b..5bd5b84d6 100644
--- a/ietf/settings.py
+++ b/ietf/settings.py
@@ -286,8 +286,8 @@ TEST_CODE_COVERAGE_EXCLUDE = [
     "ietf/utils/test_runner.py",
 ]
 
-TEST_COVERAGE_MASTER_FILE = "release-coverage.json"
-TEST_COVERAGE_LATEST_FILE = "latest-coverage.json"
+TEST_COVERAGE_MASTER_FILE = os.path.join(BASE_DIR, "../release-coverage.json")
+TEST_COVERAGE_LATEST_FILE = os.path.join(BASE_DIR, "../latest-coverage.json")
 
 TEST_CODE_COVERAGE_CHECKER = None
 if SERVER_MODE != 'production':