summaryrefslogtreecommitdiff
path: root/silx/io/test/test_spech5.py
diff options
context:
space:
mode:
authorPicca Frédéric-Emmanuel <picca@synchrotron-soleil.fr>2019-05-28 08:16:16 +0200
committerPicca Frédéric-Emmanuel <picca@synchrotron-soleil.fr>2019-05-28 08:16:16 +0200
commit7287b75301a53bae723579b145448d43304272af (patch)
treedf6d1a4595f3352a8c90ce9cba0e71ea0269e98b /silx/io/test/test_spech5.py
parent3e5dcad207c1eadeb74fb53f524c3a94fbe19096 (diff)
parenta763e5d1b3921b3194f3d4e94ab9de3fbe08bbdd (diff)
Update upstream source from tag 'upstream/0.10.1+dfsg'
Update to upstream version '0.10.1+dfsg' with Debian dir 6b2d4eeabb68177b2b91df4d7527306d5e19409d
Diffstat (limited to 'silx/io/test/test_spech5.py')
-rw-r--r--silx/io/test/test_spech5.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/silx/io/test/test_spech5.py b/silx/io/test/test_spech5.py
index b842243..7c8ed5d 100644
--- a/silx/io/test/test_spech5.py
+++ b/silx/io/test/test_spech5.py
@@ -37,10 +37,7 @@ from .. import spech5
from ..spech5 import (SpecH5, SpecH5Dataset, spec_date_to_iso8601)
from .. import specfile
-try:
- import h5py
-except ImportError:
- h5py = None
+import h5py
__authors__ = ["P. Knobel"]
__license__ = "MIT"
@@ -299,8 +296,6 @@ class TestSpecH5(unittest.TestCase):
def testGetClass(self):
"""Test :meth:`SpecH5Group.get`"""
- if h5py is None:
- self.skipTest("h5py is not available")
self.assertIs(self.sfh5["1.1"].get("start_time", getclass=True),
h5py.Dataset)
self.assertIs(self.sfh5["1.1"].get("instrument", getclass=True),
@@ -309,7 +304,6 @@ class TestSpecH5(unittest.TestCase):
# spech5 does not define external link, so there is no way
# a group can *get* a SpecH5 class
- @unittest.skipIf(h5py is None, "test requires h5py (not installed)")
def testGetApi(self):
result = self.sfh5.get("1.1", getclass=True, getlink=True)
self.assertIs(result, h5py.HardLink)
@@ -332,7 +326,6 @@ class TestSpecH5(unittest.TestCase):
self.assertEqual(self.sfh5["/1.2/instrument/positioners"],
self.sfh5["1.2"]["instrument"]["positioners"])
- @unittest.skipIf(h5py is None, "test requires h5py (not installed)")
def testH5pyClass(self):
"""Test :attr:`h5py_class` returns the corresponding h5py class
(h5py.File, h5py.Group, h5py.Dataset)"""