diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 06:43:15 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 06:43:15 -0500 |
commit | 622742746327abccd848d40583c9d7bc8bcb096c (patch) | |
tree | a1419e5f0df1bf266abca7728d0376e2fae8afcb /igor.py | |
parent | b26cf4981ebc3bdbcec03386b4ee2734f5e9a444 (diff) | |
download | python-coveragepy-git-622742746327abccd848d40583c9d7bc8bcb096c.tar.gz |
Change all pylint message codes to message names
Diffstat (limited to 'igor.py')
-rw-r--r-- | igor.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -99,7 +99,7 @@ def run_tests_with_coverage(tracer, *nose_args): if getattr(mod, '__file__', "??").startswith(covdir): covmods[name] = mod del sys.modules[name] - import coverage # don't warn about re-import: pylint: disable=W0404 + import coverage # don't warn about re-import: pylint: disable=reimported sys.modules.update(covmods) # Run nosetests, with the arguments from our command line. @@ -140,7 +140,7 @@ def do_zip_mods(): 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 + # pylint: disable=import-error,no-name-in-module import distutils.core cur_dir = os.getcwd() os.chdir("tests/eggsrc") |