blob: b431d7cd1ca10827af080f1752835f573474761f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
From 141eafa531c6c09a06efe6a694251a1eea84908d Mon Sep 17 00:00:00 2001
From: Thomas A Caswell <tcaswell@bnl.gov>
Date: Sun, 17 Mar 2019 16:57:16 -0400
Subject: [PATCH] TST: bump skip version on attrs test
We are exercising a bug in hdf5, projected to be fixed in 1.10.6 and
1.12.0
closes #1180
---
h5py/tests/old/test_attrs.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/h5py/tests/old/test_attrs.py b/h5py/tests/old/test_attrs.py
index d2e0ab59..46b20e8e 100644
--- a/h5py/tests/old/test_attrs.py
+++ b/h5py/tests/old/test_attrs.py
@@ -178,7 +178,7 @@ def fill_attrs(self, track_order):
attrs[str(i)] = i
return attrs
- @ut.skipUnless(h5py.version.hdf5_version_tuple >= (1, 10, 5), 'HDF5 1.10.5 required')
+ @ut.skipUnless(h5py.version.hdf5_version_tuple >= (1, 10, 6), 'HDF5 1.10.6 required')
# https://forum.hdfgroup.org/t/bug-h5arename-fails-unexpectedly/4881
def test_track_order(self):
attrs = self.fill_attrs(track_order=True) # creation order
|