8000 testing dir perm on windows platform removed · davidbrochart/zarr-python@ab0f258 · GitHub
[go: up one dir, main page]

Skip to content

Commit ab0f258

Browse files
testing dir perm on windows platform removed
* decreases coverage (travis)
1 parent 1cbbd1a commit ab0f258

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

zarr/tests/test_storage.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -960,11 +960,9 @@ def test_permissions(self):
960960
assert perm == '0o644'
961961
info = z.getinfo('baz/')
962962
perm = oct(info.external_attr >> 16)
963-
# windows/unix os dependent
963+
# only for posix platforms
964964
if os.name == 'posix':
965965
assert perm == '0o40775'
966-
else:
967-
assert perm == '0o644'
968966
z.close()
969967

970968

0 commit comments

Comments
 (0)
0