summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/test_plugins.py2
-rw-r--r--tests/test_summary.py4
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)),