diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-28 06:02:40 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-28 06:02:40 -0500 |
commit | 58503498392ee24e0ec07e9d50ec5d0c54120675 (patch) | |
tree | 9889be24ca0616f5c1354cccc7ef5f30354d2635 /igor.py | |
parent | c25c867352cff79b64b7f900aee4f139922a1ecb (diff) | |
parent | 3ef81fc93546470e2e1158bef547a1194e5cb67f (diff) | |
download | python-coveragepy-git-58503498392ee24e0ec07e9d50ec5d0c54120675.tar.gz |
Automated merge with ssh://bitbucket.org/ned/coveragepy
Diffstat (limited to 'igor.py')
-rw-r--r-- | igor.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -130,7 +130,7 @@ def do_install_egg(): """Install the egg1 egg for tests.""" # I am pretty certain there are easier ways to install eggs... # pylint: disable=F0401,E0611,E1101 - import distutils.core + import distutils.core cur_dir = os.getcwd() os.chdir("test/eggsrc") distutils.core.run_setup("setup.py", ["--quiet", "bdist_egg"]) @@ -193,6 +193,7 @@ def do_check_eol(): check_files("test", ["*,cover"], trail_white=False) check_files("test/js", ["*.js", "*.html"]) check_file("setup.py") + check_file("igor.py") check_files("doc", ["*.rst"]) check_files(".", ["*.txt"]) @@ -224,7 +225,7 @@ def do_help(): def main(args): """Main command-line execution for igor. - + Verbs are taken from the command line, and extra words taken as directed by the arguments needed by the handler. |