diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-02-08 17:26:03 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-02-08 17:26:03 -0500 |
commit | f22c360d62956a83d347c2a2161bba98d4c2bd4b (patch) | |
tree | 9c3d7e58c205ddf8075f0596bd47d5f1ba576c7d /tests/test_plugins.py | |
parent | 252b90a8c232c6c2691869f0dcd4f9e00c7b1aac (diff) | |
download | python-coveragepy-git-f22c360d62956a83d347c2a2161bba98d4c2bd4b.tar.gz |
Plugin support is in C tracer as well as Python tracer
Diffstat (limited to 'tests/test_plugins.py')
-rw-r--r-- | tests/test_plugins.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/test_plugins.py b/tests/test_plugins.py index c17b83bd..83dc4a16 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -3,7 +3,6 @@ import os.path import coverage -from coverage import env from coverage.backward import StringIO from coverage.control import Plugins from coverage.misc import CoverageException @@ -202,11 +201,6 @@ class PluginTest(CoverageTest): class FileTracerTest(CoverageTest): """Tests of plugins that implement file_tracer.""" - def setUp(self): - super(FileTracerTest, self).setUp() - if env.C_TRACER: - self.skip("Need Python tracer for plugin tests") - def test_plugin1(self): self.make_file("simple.py", """\ import try_xyz |