summaryrefslogtreecommitdiff
path: root/coverage/runners/noseplugin.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-05-30 14:52:44 -0400
committerNed Batchelder <ned@nedbatchelder.com>2010-05-30 14:52:44 -0400
commit60a58a0c6fe7536a7a2641a44c1649b9aa7bc766 (patch)
tree570454463b2cb2628708d016ef9c207e086a1135 /coverage/runners/noseplugin.py
parent02adbba0489d0ff1f02677dd2cb8c4551020ddc1 (diff)
downloadpython-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.py4
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__)