diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-03-11 19:18:12 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-03-11 19:18:12 -0500 |
commit | 1d83d59ffacd0736411e492786f83953d247819f (patch) | |
tree | d7a3ce3a93213d0ac889fcac8670658cb966db1f /tests/test_cmdline.py | |
parent | ebbf3d5d59aaf638f7650db848c6583cafda8315 (diff) | |
download | python-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_cmdline.py')
-rw-r--r-- | tests/test_cmdline.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py index 5c5ea0ef..adbbc619 100644 --- a/tests/test_cmdline.py +++ b/tests/test_cmdline.py @@ -765,7 +765,6 @@ class CmdLineWithFilesTest(BaseCmdLineTest): """Test the command line in ways that need temp files.""" run_in_temp_dir = True - no_files_in_temp_dir = True def test_debug_data(self): data = CoverageData() |