diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-19 06:36:52 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-19 06:36:52 -0400 |
commit | 1ace6461647febeca47526665a67039278ba1050 (patch) | |
tree | 94d0a28be9cfd37d105cddd599c06264a95f1c8d | |
parent | 2282651b80a13eb6949899ec0ec1caf5cc5c4e44 (diff) | |
download | python-coveragepy-1ace6461647febeca47526665a67039278ba1050.tar.gz |
Don't need to pre-make xml report dirs any more.
-rw-r--r-- | tests/farm/html/run_a_xml_1.py | 4 | ||||
-rw-r--r-- | tests/farm/html/run_a_xml_2.py | 4 | ||||
-rw-r--r-- | tests/farm/html/run_y_xml_branch.py | 4 |
3 files changed, 0 insertions, 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=[ |