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 | 26c61277daf2ba2a369f216768291bf4fa3212be (patch) | |
tree | fdb43dee6f429b7c3a67c6768a8d2011a2d2f974 | |
parent | ec7921f1d90e2eaa903cba211996a201cd97ad70 (diff) | |
download | python-coveragepy-git-26c61277daf2ba2a369f216768291bf4fa3212be.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 e1bf1828..5bf2f460 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 f53e04aa..5d8778f3 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 9d3aba2f..921da9e2 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=[ |