From f217de1d181b8df05402fa65a9a0842aa3814dba Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 22 Jan 2018 21:53:08 -0500 Subject: Avoid a temp dir for a test that doesn't need it --- tests/test_plugins.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_plugins.py b/tests/test_plugins.py index c4fc3ac..2e8d52f 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -853,6 +853,8 @@ class BadFileTracerTest(FileTracerTest): class ConfigurerPluginTest(CoverageTest): """Test configuring plugins.""" + run_in_temp_dir = False + def test_configurer_plugin(self): cov = coverage.Coverage() cov.set_option("run:plugins", ["tests.plugin_config"]) -- cgit v1.2.1