Skip to content

Commit

Permalink
Merge pull request silx-kit#3723 from silx-kit/kif-patch-1
Browse files Browse the repository at this point in the history
Skipif on test rather than on fonction ...
  • Loading branch information
t20100 authored Nov 22, 2022
2 parents 8609ba6 + f961145 commit a6e3b69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/silx/io/test/test_h5link_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@


@pytest.fixture(scope="module")
@pytest.mark.skipif("VirtualSource" not in dir(h5py), reason="h5py is too old")
def hdf5_with_external_data(tmpdir_factory):
tmpdir = tmpdir_factory.mktemp("hdf5_with_external_data")
master = str(tmpdir / "master.h5")
Expand Down Expand Up @@ -95,6 +94,7 @@ def hdf5_with_external_data(tmpdir_factory):
return tmpdir


@pytest.mark.skipif("VirtualLayout" not in dir(h5py), reason="h5py is too old")
def test_external_dataset_info(hdf5_with_external_data):
tmpdir = hdf5_with_external_data
master = str(tmpdir / "master.h5")
Expand Down

0 comments on commit a6e3b69

Please sign in to comment.