diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-09-02 07:24:58 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-09-02 10:03:43 -0400 |
commit | 8bb8175d9e14f1a47180ccd356060d5068bc769b (patch) | |
tree | a4a7b5602a562bd2e2e1e452405d5b20cfe854ed | |
parent | fcf665bb4db940dc36d036bb09cbda0bb1ac39af (diff) | |
download | python-coveragepy-git-8bb8175d9e14f1a47180ccd356060d5068bc769b.tar.gz |
More tests need temp directories
-rw-r--r-- | tests/test_plugins.py | 2 | ||||
-rw-r--r-- | tests/test_summary.py | 4 |
2 files changed, 0 insertions, 6 deletions
diff --git a/tests/test_plugins.py b/tests/test_plugins.py index 04eea3df..b1614832 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -863,8 +863,6 @@ 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"]) diff --git a/tests/test_summary.py b/tests/test_summary.py index 980fd3d4..936df7fa 100644 --- a/tests/test_summary.py +++ b/tests/test_summary.py @@ -695,8 +695,6 @@ class SummaryTest2(UsingModulesMixin, CoverageTest): # needs of their setUp, rather than the product features they are testing. # There's probably a better way to organize these. - run_in_temp_dir = False - def test_empty_files(self): # Shows that empty files like __init__.py are listed as having zero # statements, not one statement. @@ -752,8 +750,6 @@ class ReportingReturnValueTest(CoverageTest): class TestSummaryReporterConfiguration(CoverageTest): """Tests of SummaryReporter.""" - run_in_temp_dir = False - LINES_1 = { os.path.join(TESTS_DIR, "test_api.py"): dict.fromkeys(range(400)), os.path.join(TESTS_DIR, "test_backward.py"): dict.fromkeys(range(20)), |