We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d3cb2f commit 8acf83aCopy full SHA for 8acf83a
requirements_dev.txt
@@ -46,7 +46,7 @@ python-dateutil==2.7.3
46
readme-renderer==22.0
47
requests==2.19.1
48
requests-toolbelt==0.8.0
49
-setuptools-scm=3.1.0
+setuptools-scm==3.1.0
50
s3fs==0.1.6
51
s3transfer==0.1.13
52
scandir==1.9.0
zarr/tests/test_convenience.py
@@ -4,6 +4,7 @@
4
import atexit
5
import os
6
import unittest
7
+from numbers import Integral
8
9
10
import numpy as np
@@ -136,7 +137,7 @@ def test_consolidate_metadata():
136
137
cmd['.zgroup'] = None
138
139
# test getsize on the store
- assert isinstance(getsize(cmd), int)
140
+ assert isinstance(getsize(cmd), Integral)
141
142
# test new metadata are not writeable
143
with pytest.raises(PermissionError):
0 commit comments