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 | b33c041b055f0bc243790d6cce4bb32689f3b4f3 (patch) | |
tree | db1e93b4484bdd8ddd4edaf5eff23a504788df7c /tests/test_data.py | |
parent | 21b7f19ee8667e835ffe944b2498038e7bde3b16 (diff) | |
download | python-coveragepy-git-b33c041b055f0bc243790d6cce4bb32689f3b4f3.tar.gz |
Mark a bunch of tests that don't need temp directories.
Diffstat (limited to 'tests/test_data.py')
-rw-r--r-- | tests/test_data.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_data.py b/tests/test_data.py index 98156a86..9c29289d 100644 --- a/tests/test_data.py +++ b/tests/test_data.py @@ -25,6 +25,8 @@ Y_PY_ARCS_3 = [(17,23)] class DataTest(CoverageTest): """Test cases for coverage.data.""" + run_in_temp_dir = False + def assert_summary(self, covdata, summary, fullpath=False): """Check that the summary of `covdata` is `summary`.""" self.assertEqual(covdata.summary(fullpath), summary) |