summaryrefslogtreecommitdiff
path: root/igor.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2013-02-02 11:27:48 -0500
committerNed Batchelder <ned@nedbatchelder.com>2013-02-02 11:27:48 -0500
commitf3c8815cbcabaef7d54490b597e5b5a2f6b1612b (patch)
tree35d4b9bfb2eee2dca6a18f14cc9f86dcc2ddd6f7 /igor.py
parentc19232a9d2be2bde30e446311f32e9dcdd5d4774 (diff)
downloadpython-coveragepy-git-f3c8815cbcabaef7d54490b597e5b5a2f6b1612b.tar.gz
Directory changed: test->tests. Adapt.
Diffstat (limited to 'igor.py')
-rw-r--r--igor.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/igor.py b/igor.py
index b54ba5da..e093d494 100644
--- a/igor.py
+++ b/igor.py
@@ -122,8 +122,8 @@ def do_test_with_tracer(tracer, *noseargs):
def do_zip_mods():
"""Build the zipmods.zip file."""
- zf = zipfile.ZipFile("test/zipmods.zip", "w")
- zf.write("test/covmodzip1.py", "covmodzip1.py")
+ zf = zipfile.ZipFile("tests/zipmods.zip", "w")
+ zf.write("tests/covmodzip1.py", "covmodzip1.py")
zf.close()
def do_install_egg():
@@ -132,7 +132,7 @@ def do_install_egg():
# pylint: disable=F0401,E0611,E1101
import distutils.core
cur_dir = os.getcwd()
- os.chdir("test/eggsrc")
+ os.chdir("tests/eggsrc")
distutils.core.run_setup("setup.py", ["--quiet", "bdist_egg"])
egg = glob.glob("dist/*.egg")[0]
distutils.core.run_setup(
@@ -188,10 +188,10 @@ def do_check_eol():
check_files("coverage", ["*.py", "*.c"])
check_files("coverage/htmlfiles", ["*.html", "*.css", "*.js"])
- check_file("test/farm/html/src/bom.py", crlf=False)
- check_files("test", ["*.py"])
- check_files("test", ["*,cover"], trail_white=False)
- check_files("test/js", ["*.js", "*.html"])
+ check_file("tests/farm/html/src/bom.py", crlf=False)
+ check_files("tests", ["*.py"])
+ check_files("tests", ["*,cover"], trail_white=False)
+ check_files("tests/js", ["*.js", "*.html"])
check_file("setup.py")
check_file("igor.py")
check_file("Makefile")