File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ idna==2.6
15
15
mccabe==0.6.1
16
16
monotonic==1.3
17
17
msgpack-python==0.4.8
18
+ nose==1.3.7
18
19
numcodecs==0.5.2
19
20
numpy==1.13.3
20
21
packaging==16.8
Original file line number Diff line number Diff line change @@ -1272,7 +1272,7 @@ def test_nbytes_stored(self):
1272
1272
1273
1273
try :
1274
1274
import lmdb
1275
- except ImportError :
1275
+ except ImportError : # pragma: no cover
1276
1276
lmdb = None
1277
1277
1278
1278
Original file line number Diff line number Diff line change @@ -905,7 +905,7 @@ def create_store():
905
905
906
906
try :
907
907
import lmdb
908
- except ImportError :
908
+ except ImportError : # pragma: no cover
909
909
lmdb = None
910
910
911
911
Original file line number Diff line number Diff line change @@ -793,7 +793,6 @@ def create_store(self):
793
793
except ImportError : # pragma: no cover
794
794
ndbm = None
795
795
796
-
797
796
@pytest .mark .skipif (ndbm is None , reason = 'ndbm is not installed' )
798
797
class TestDBMStoreNDBM (TestDBMStore ):
799
798
@@ -822,7 +821,7 @@ def create_store(self):
822
821
823
822
try :
824
823
import lmdb
825
- except ImportError :
824
+ except ImportError : # pragma: no cover
826
825
lmdb = None
827
826
828
827
You can’t perform that action at this time.
0 commit comments