File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
[run]
2
- omit = zarr/meta_v1.py
2
+ omit =
3
+ zarr/meta_v1.py
4
+ bench/compress_normal.py
3
5
4
6
[report]
5
7
exclude_lines =
Original file line number Diff line number Diff line change @@ -1306,10 +1306,10 @@ class TestDBMStoreNDBM(TestDBMStore):
1306
1306
1307
1307
def create_store (self ):
1308
1308
ndbm = pytest .importorskip ("dbm.ndbm" )
1309
- path = tempfile .mktemp (suffix = ' .ndbm' )
1310
- atexit .register (atexit_rmglob , path + '*' )
1311
- store = DBMStore (path , flag = 'n' , open = ndbm .open )
1312
- return store
1309
+ path = tempfile .mktemp (suffix = " .ndbm" ) # pragma: no cover
1310
+ atexit .register (atexit_rmglob , path + "*" ) # pragma: no cover
1311
+ store = DBMStore (path , flag = "n" , open = ndbm .open ) # pragma: no cover
1312
+ return store # pragma: no cover
1313
1313
1314
1314
1315
1315
class TestDBMStoreBerkeleyDB (TestDBMStore ):
You can’t perform that action at this time.
0 commit comments