Skip to content

Commit 286ca37

Browse files
committed
Provide full paths to the *coverage.json files.
- Legacy-Id: 9321
1 parent 66bbc97 commit 286ca37

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,8 @@ def skip_unreadable_post(record):
286286
"ietf/utils/test_runner.py",
287287
]
288288

289-
TEST_COVERAGE_MASTER_FILE = "release-coverage.json"
290-
TEST_COVERAGE_LATEST_FILE = "latest-coverage.json"
289+
TEST_COVERAGE_MASTER_FILE = os.path.join(BASE_DIR, "../release-coverage.json")
290+
TEST_COVERAGE_LATEST_FILE = os.path.join(BASE_DIR, "../latest-coverage.json")
291291

292292
TEST_CODE_COVERAGE_CHECKER = None
293293
if SERVER_MODE != 'production':

0 commit comments

Comments
 (0)