summaryrefslogtreecommitdiff
path: root/debian/patches/0004-skip-two-tests.patch
blob: fbef5d10af80ebaa20143d78394a831141f8f9fc (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
28
29
From: =?utf-8?q?Picca_Fr=C3=A9d=C3=A9ric-Emmanuel?= <picca@debian.org>
Date: Sun, 19 Sep 2021 16:03:58 +0200
Subject: skip two tests

"https://github.com/silx-kit/silx/issues/3523"
---
 src/silx/io/test/test_h5py_utils.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/silx/io/test/test_h5py_utils.py b/src/silx/io/test/test_h5py_utils.py
index 0d10a78..f6405c6 100644
--- a/src/silx/io/test/test_h5py_utils.py
+++ b/src/silx/io/test/test_h5py_utils.py
@@ -248,6 +248,7 @@ class TestH5pyUtils(unittest.TestCase):
         "Versions of libhdf5 and h5py use incompatible file locking behaviour",
     )
     @subtests
+    @unittest.skipIf(True, "https://github.com/silx-kit/silx/issues/3523")
     def test_modes_multi_process(self):
         """Test concurrent access to the same file from different processes"""
         filename = self._new_filename()
@@ -322,6 +323,7 @@ class TestH5pyUtils(unittest.TestCase):
 
     @subtests
     @unittest.skipIf(not h5py_utils.HAS_SWMR, "SWMR not supported")
+    @unittest.skipIf(True, "https://github.com/silx-kit/silx/issues/3523")
     def test_modes_multi_process_swmr(self):
         filename = self._new_filename()