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
commit9f43b316aac6bbbe2089ad8732d606448cea5784 (patch)
treef96f55ae7202f0ffa3543e465dc00cfa5017dbe4
parent69debd440daab9155cc2b2243f29a8a48f4404f9 (diff)
downloadpython-coveragepy-git-9f43b316aac6bbbe2089ad8732d606448cea5784.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 c4fc3ac7..2e8d52f8 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"])