Allow running "test_htmlreport.py" from any path

This fixes a Travis CI failure.
This commit is contained in:
Steven Myint 2013-10-07 07:33:13 -07:00
parent 7435df91b8
commit 9475a7d029
1 changed files with 3 additions and 2 deletions

View File

@ -99,8 +99,9 @@ def runCheck(source_filename=None, xml_version='1', xml_filename=None):
subprocess.check_call(
[HTML_REPORT_BIN,
'--file=' + xml_filename,
'--report-dir=' + output_directory])
'--file=' + os.path.realpath(xml_filename),
'--report-dir=' + os.path.realpath(output_directory)],
cwd=os.path.join(ROOT_DIR, 'htmlreport'))
with open(os.path.join(output_directory, 'index.html')) as index_file:
index_contents = index_file.read()