diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-11-25 20:24:46 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-11-25 22:20:47 -0500 |
commit | 3947e84e79085571c72f9601da86cb3a31c92082 (patch) | |
tree | 27162e4267374f1e6b3699f05b1eed66b3d18fc6 /tests/test_plugins.py | |
parent | c280e8cafec1e80e841bd9061f3ab1b3f0ade1d1 (diff) | |
download | python-coveragepy-git-3947e84e79085571c72f9601da86cb3a31c92082.tar.gz |
Mark tests that don't need a temp dir
Diffstat (limited to 'tests/test_plugins.py')
-rw-r--r-- | tests/test_plugins.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_plugins.py b/tests/test_plugins.py index 87690439..2477f5ce 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -874,6 +874,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"]) |