Skip to content

Commit 406633f

Browse files
committed
include a test
1 parent 4d329f2 commit 406633f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ build/
33
mkl_fft.egg-info/
44
mkl_fft/__pycache__/
55
mkl_fft/_pydfti.c
6-
mkl_fft/_pydfti.cpython-310-x86_64-linux-gnu.so
6+
mkl_fft/_pydfti.cpython*.so
77
mkl_fft/interfaces/__pycache__/
88
mkl_fft/src/mklfft.c
99
mkl_fft/tests/__pycache__/

mkl_fft/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2525
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2626

27-
import mkl_fft.interfaces
2827

2928
from . import _init_helper
3029

@@ -47,6 +46,8 @@
4746
)
4847
from ._version import __version__
4948

49+
import mkl_fft.interfaces # isort: skip
50+
5051
__all__ = [
5152
"fft",
5253
"ifft",

mkl_fft/tests/from_scipy/test_basic.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,6 @@ def test_ihfft(self, xp):
574574
self._test_mtsame(fft.ihfft, a, xp=xp)
575575

576576

577-
@pytest.mark.skip("skip due to gh-issue-151")
578577
@skip_xp_backends(np_only=True)
579578
@pytest.mark.parametrize("func", [fft.fft, fft.ifft, fft.rfft, fft.irfft])
580579
def test_multiprocess(func, xp):

0 commit comments

Comments
 (0)