diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2013-09-28 12:55:23 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2013-09-28 12:55:23 -0400 |
commit | f360498ba0294dfef288f5fff0e8a3ba291881b2 (patch) | |
tree | 6efecd6c6f90661e1ab38a544f786aed1895b4ba /tests/test_debug.py | |
parent | 2024650297ec269a730b3d67fbc56f6c7c8317f6 (diff) | |
download | python-coveragepy-f360498ba0294dfef288f5fff0e8a3ba291881b2.tar.gz |
Mark a bunch of tests that don't need temp directories.
Diffstat (limited to 'tests/test_debug.py')
-rw-r--r-- | tests/test_debug.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_debug.py b/tests/test_debug.py index 0132c1c..985da40 100644 --- a/tests/test_debug.py +++ b/tests/test_debug.py @@ -12,6 +12,8 @@ from tests.coveragetest import CoverageTest class InfoFormatterTest(CoverageTest): """Tests of misc.info_formatter.""" + run_in_temp_dir = False + def test_info_formatter(self): lines = list(info_formatter([ ('x', 'hello there'), |