From b06c5c724b507a0059caf645c42991f83b86aec2 Mon Sep 17 00:00:00 2001 From: David Stanek Date: Fri, 21 May 2010 23:40:04 -0400 Subject: cleaned up the code for the nose plugin --- test/test_testplugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/test_testplugin.py') diff --git a/test/test_testplugin.py b/test/test_testplugin.py index c216ead6..87e2e4bc 100644 --- a/test/test_testplugin.py +++ b/test/test_testplugin.py @@ -4,10 +4,10 @@ from nose.plugins import PluginTester from coverage.noseplugin import Coverage class TestCoverage(PluginTester, unittest.TestCase): - activate = '--with-coverage_new' # enables the plugin + activate = '--with-coverage' # enables the plugin plugins = [Coverage()] args = ['--cover-action=report'] - + @py.test.mark.skipif(True) # "requires nose test runner" def test_output(self): assert "Processing Coverage..." in self.output, ( -- cgit v1.2.1