diff options
Diffstat (limited to 'tests/test_plugins.py')
-rw-r--r-- | tests/test_plugins.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/test_plugins.py b/tests/test_plugins.py index 2140f00c..d50ff6d2 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -20,7 +20,7 @@ from coverage.misc import import_local_file import coverage.plugin from tests.coveragetest import CoverageTest -from tests.helpers import CheckUniqueFilenames +from tests.helpers import CheckUniqueFilenames, swallow_warnings class FakeConfig: @@ -193,8 +193,9 @@ class PluginTest(CoverageTest): cov = coverage.Coverage(debug=["sys"]) cov._debug_file = debug_out cov.set_option("run:plugins", ["plugin_sys_info"]) - with pytest.warns(None): - # Catch warnings so we don't see "plugins aren't supported on PyTracer" + with swallow_warnings( + r"Plugin file tracers \(plugin_sys_info.Plugin\) aren't supported with PyTracer" + ): cov.start() cov.stop() # pragma: nested |