diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-08-19 07:47:54 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-08-24 06:54:17 -0400 |
commit | 948c307c89c9f61256bd96b770fa5b14ee4fe383 (patch) | |
tree | d17aa0456cf4e39fd6daff3c0a33fa52581cb695 /tests/test_data.py | |
parent | b282c54ebaaae13aa8b81f2380cdc20acaa9fc69 (diff) | |
download | python-coveragepy-git-948c307c89c9f61256bd96b770fa5b14ee4fe383.tar.gz |
PyPy needs to close cursors from pragmas
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 48df81fd..00d5d294 100644 --- a/tests/test_data.py +++ b/tests/test_data.py @@ -105,6 +105,8 @@ class DataTestHelpers(CoverageTest): class CoverageDataTest(DataTestHelpers, CoverageTest): """Test cases for CoverageData.""" + # SQL data storage always has files on disk, even without .write(). + # We need to separate the tests so they don't clobber each other. run_in_temp_dir = STORAGE == "sql" def test_empty_data_is_false(self): |