summaryrefslogtreecommitdiff
path: root/tests/test_data.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-03-11 19:18:12 -0500
committerNed Batchelder <ned@nedbatchelder.com>2021-03-11 19:18:12 -0500
commit1d83d59ffacd0736411e492786f83953d247819f (patch)
treed7a3ce3a93213d0ac889fcac8670658cb966db1f /tests/test_data.py
parentebbf3d5d59aaf638f7650db848c6583cafda8315 (diff)
downloadpython-coveragepy-git-1d83d59ffacd0736411e492786f83953d247819f.tar.gz
refactor: remove unused test class setting
unittest_mixins would check that files got created if a test made a temporary directory, so that we could trim down making temp dirs needlessly. But we don't use unittest_mixins any more, so this setting does nothing. Remove it.
Diffstat (limited to 'tests/test_data.py')
-rw-r--r--tests/test_data.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test_data.py b/tests/test_data.py
index 190231c7..30e6df60 100644
--- a/tests/test_data.py
+++ b/tests/test_data.py
@@ -106,8 +106,6 @@ class DataTestHelpers(CoverageTest):
class CoverageDataTest(DataTestHelpers, CoverageTest):
"""Test cases for CoverageData."""
- no_files_in_temp_dir = True
-
def test_empty_data_is_false(self):
covdata = CoverageData()
assert not covdata
@@ -560,8 +558,6 @@ class CoverageDataInTempDirTest(DataTestHelpers, CoverageTest):
class CoverageDataFilesTest(DataTestHelpers, CoverageTest):
"""Tests of CoverageData file handling."""
- no_files_in_temp_dir = True
-
def test_reading_missing(self):
self.assert_doesnt_exist(".coverage")
covdata = CoverageData()