diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-05-30 14:52:44 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-05-30 14:52:44 -0400 |
commit | 691159a39ff5f5211656fd82906a1acd9d6acdfb (patch) | |
tree | ef68baa4c2d7db2a678ef7e565969eb940ee0c36 /coverage/runners/noseplugin.py | |
parent | c03628367b660ff2b52d6f88105fda75e5b080c8 (diff) | |
download | python-coveragepy-git-691159a39ff5f5211656fd82906a1acd9d6acdfb.tar.gz |
Refactor the common parts of the plugins to neutral territory.
Diffstat (limited to 'coverage/runners/noseplugin.py')
-rw-r--r-- | coverage/runners/noseplugin.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/coverage/runners/noseplugin.py b/coverage/runners/noseplugin.py index 20e73730..dceb9f71 100644 --- a/coverage/runners/noseplugin.py +++ b/coverage/runners/noseplugin.py @@ -1,7 +1,9 @@ +"""A nose plugin to run coverage.py""" + import logging from nose.plugins import Plugin -from coverage.runners.pytestplugin import CoverageTestWrapper, options as coverage_opts +from coverage.runners.plugin import CoverageTestWrapper, options as coverage_opts log = logging.getLogger(__name__) |