diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-03-06 09:33:47 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-03-11 06:38:35 -0500 |
commit | af234f4a2a08dc1616c2270df6349925221c81e8 (patch) | |
tree | 71f7946c36f189d67e9b2e50a4f80799c3d3df27 /tests/test_plugins.py | |
parent | 26e2f9b6f22fd29efe3e4bd7df63acc144950c80 (diff) | |
download | python-coveragepy-git-af234f4a2a08dc1616c2270df6349925221c81e8.tar.gz |
test: have pytest collect test classes uniformly
Diffstat (limited to 'tests/test_plugins.py')
-rw-r--r-- | tests/test_plugins.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_plugins.py b/tests/test_plugins.py index aeffdb80..59be645c 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -257,7 +257,7 @@ class PluginTest(CoverageTest): @pytest.mark.skipif(env.C_TRACER, reason="This test is only about PyTracer.") -class PluginWarningOnPyTracer(CoverageTest): +class PluginWarningOnPyTracerTest(CoverageTest): """Test that we get a controlled exception with plugins on PyTracer.""" def test_exception_if_plugins_on_pytracer(self): self.make_file("simple.py", "a = 1") |