Skip to content

Commit 4049ef0

Browse files
committed
include tests, change import order
1 parent 84216a6 commit 4049ef0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

mkl_fft/interfaces/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,5 @@
2424
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2525

2626
from . import numpy_fft, scipy_fft
27+
28+
from . import dask_fft # isort: skip

mkl_fft/tests/test_interfaces.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ def test_axes(func):
168168

169169
@pytest.mark.parametrize(
170170
"interface",
171-
[mfi.scipy_fft, mfi.numpy_fft],
172-
ids=["scipy", "numpy"],
171+
[mfi.scipy_fft, mfi.numpy_fft, mfi.dask_fft],
172+
ids=["scipy", "numpy", "dask"],
173173
)
174174
@pytest.mark.parametrize(
175175
"func", ["fftshift", "ifftshift", "fftfreq", "rfftfreq"]

0 commit comments

Comments
 (0)