Searched refs:html_directory (Results 1 – 1 of 1) sorted by relevance
147 def setup_html_directory(html_directory): argument160 if not html_directory:161 html_directory = tempfile.mkdtemp()162 elif not os.path.exists(html_directory):163 os.mkdir(html_directory)165 html_directory = os.path.join(html_directory, 'rebaseline_html')166 logging.info('Html directory: "%s"', html_directory)168 if os.path.exists(html_directory):169 shutil.rmtree(html_directory, True)170 logging.info('Deleted file at html directory: "%s"', html_directory)[all …]