Skip to content

Commit

Permalink
tests: correct path for ci use
Browse files Browse the repository at this point in the history
  • Loading branch information
Eoghan O'Connell committed Aug 26, 2024
1 parent f09a64f commit 41b77e4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_interfere_base.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
import pathlib
import numpy as np

import qpretrieve

data_path = pathlib.Path(__file__).parent / "data"


def test_interfere_base_best_interface():
edata = np.load("./data/hologram_cell.npz")
edata = np.load(data_path / "hologram_cell.npz")

holo = qpretrieve.OffAxisHologram(data=edata["data"])
assert holo.ff_iface.is_available
Expand Down

0 comments on commit 41b77e4

Please sign in to comment.