From 1ace6461647febeca47526665a67039278ba1050 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Wed, 19 Aug 2015 06:36:52 -0400 Subject: Don't need to pre-make xml report dirs any more. --- tests/farm/html/run_a_xml_1.py | 4 ---- tests/farm/html/run_a_xml_2.py | 4 ---- tests/farm/html/run_y_xml_branch.py | 4 ---- 3 files changed, 12 deletions(-) diff --git a/tests/farm/html/run_a_xml_1.py b/tests/farm/html/run_a_xml_1.py index e1bf182..5bf2f46 100644 --- a/tests/farm/html/run_a_xml_1.py +++ b/tests/farm/html/run_a_xml_1.py @@ -14,10 +14,6 @@ def html_it(): global source_path source_path = coverage.files.relative_directory().rstrip('/') -import os -if not os.path.exists("xml_1"): - os.makedirs("xml_1") - runfunc(html_it, rundir="src") compare("gold_x_xml", "xml_1", scrubs=[ diff --git a/tests/farm/html/run_a_xml_2.py b/tests/farm/html/run_a_xml_2.py index f53e04a..5d8778f 100644 --- a/tests/farm/html/run_a_xml_2.py +++ b/tests/farm/html/run_a_xml_2.py @@ -14,10 +14,6 @@ def html_it(): global source_path source_path = coverage.files.relative_directory().rstrip('/') -import os -if not os.path.exists("xml_2"): - os.makedirs("xml_2") - runfunc(html_it, rundir="src") compare("gold_x_xml", "xml_2", scrubs=[ diff --git a/tests/farm/html/run_y_xml_branch.py b/tests/farm/html/run_y_xml_branch.py index 9d3aba2..921da9e 100644 --- a/tests/farm/html/run_y_xml_branch.py +++ b/tests/farm/html/run_y_xml_branch.py @@ -14,10 +14,6 @@ def xml_it(): global source_path source_path = coverage.files.relative_directory().rstrip('/') -import os -if not os.path.exists("xml_branch"): - os.makedirs("xml_branch") - runfunc(xml_it, rundir="src") compare("gold_y_xml_branch", "xml_branch", scrubs=[ -- cgit v1.2.1