summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-01-22 21:53:08 -0500
committerNed Batchelder <ned@nedbatchelder.com>2018-01-22 21:53:08 -0500
commitf217de1d181b8df05402fa65a9a0842aa3814dba (patch)
treef068400fcf0f7c9396354e6d9b6a20be8ce1b7c0
parent8718508cf15d9a2eb1f697d14aec0c8d558d44b3 (diff)
downloadpython-coveragepy-f217de1d181b8df05402fa65a9a0842aa3814dba.tar.gz
Avoid a temp dir for a test that doesn't need it
-rw-r--r--tests/test_plugins.py2
1 files changed, 2 insertions, 0 deletions
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"])