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 | 60a58a0c6fe7536a7a2641a44c1649b9aa7bc766 (patch) | |
tree | 570454463b2cb2628708d016ef9c207e086a1135 /coverage/runners/noseplugin.py | |
parent | 02adbba0489d0ff1f02677dd2cb8c4551020ddc1 (diff) | |
download | python-coveragepy-60a58a0c6fe7536a7a2641a44c1649b9aa7bc766.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 20e7373..dceb9f7 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__) |