Skip to content

Commit 49538a3

Browse files
committed
Testing also with pyfftw
1 parent f0f10a3 commit 49538a3

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
command: |
2424
source ~/miniconda/bin/activate root
2525
conda build --no-test ./conf
26-
conda create --name mpi4py_fft_env mpi4py_fft_test coverage scipy --use-local
26+
conda create --name mpi4py_fft_env mpi4py_fft_test coverage scipy pyfftw codecov --use-local
2727
conda activate mpi4py_fft_env
2828
cd tests && ./runtests.sh
2929

.circleci/install_conda.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/bash
2+
13
if [[ ! -d /home/circleci/miniconda ]]; then
24
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh &&
35
bash miniconda.sh -b -f -p /home/circleci/miniconda;

mpi4py_fft/mpifft.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from copy import copy
21
import numpy as np
32

43
from .libfft import FFT

tests/test_fftw.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import numpy as np
44
from scipy.fftpack import dctn as scipy_dctn
55
from scipy.fftpack import dstn as scipy_dstn
6-
import scipy.fftpack
76
from mpi4py_fft import fftw
87

98
has_pyfftw = True

0 commit comments

Comments
 (0)