File tree Expand file tree Collapse file tree 9 files changed +771
-11
lines changed
mkl_fft/tests/third_party Expand file tree Collapse file tree 9 files changed +771
-11
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ jobs:
117
117
- name : Install mkl_fft
118
118
run : |
119
119
CHANNELS="-c $GITHUB_WORKSPACE/channel ${{ env.CHANNELS }}"
120
- conda create -n ${{ env.TEST_ENV_NAME }} python=${{ matrix.python_ver }} ${{ matrix.numpy }} $PACKAGE_NAME pytest $CHANNELS
120
+ conda create -n ${{ env.TEST_ENV_NAME }} python=${{ matrix.python_ver }} ${{ matrix.numpy }} $PACKAGE_NAME pytest scipy $CHANNELS
121
121
# Test installed packages
122
122
conda list -n ${{ env.TEST_ENV_NAME }}
123
123
- name : Run tests
@@ -268,7 +268,7 @@ jobs:
268
268
SET PACKAGE_VERSION=%%F
269
269
)
270
270
SET "TEST_DEPENDENCIES=pytest pytest-cov"
271
- conda install -n ${{ env.TEST_ENV_NAME }} ${{ env.PACKAGE_NAME }}=%PACKAGE_VERSION% %TEST_DEPENDENCIES% python=${{ matrix.python }} ${{ matrix.numpy }} -c ${{ env.workdir }}/channel ${{ env.CHANNELS }}
271
+ conda install -n ${{ env.TEST_ENV_NAME }} ${{ env.PACKAGE_NAME }}=%PACKAGE_VERSION% %TEST_DEPENDENCIES% python=${{ matrix.python }} ${{ matrix.numpy }} scipy -c ${{ env.workdir }}/channel ${{ env.CHANNELS }}
272
272
- name : Report content of test environment
273
273
shell : cmd /C CALL {0}
274
274
run : |
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ jobs:
116
116
- name : Install mkl_fft
117
117
run : |
118
118
CHANNELS="-c $GITHUB_WORKSPACE/channel ${{ env.CHANNELS }}"
119
- conda create -n ${{ env.TEST_ENV_NAME }} python=${{ matrix.python }} $PACKAGE_NAME pytest $CHANNELS
119
+ conda create -n ${{ env.TEST_ENV_NAME }} python=${{ matrix.python }} $PACKAGE_NAME pytest scipy $CHANNELS
120
120
# Test installed packages
121
121
conda list -n ${{ env.TEST_ENV_NAME }}
122
122
- name : Run tests
@@ -267,7 +267,7 @@ jobs:
267
267
SET PACKAGE_VERSION=%%F
268
268
)
269
269
SET "TEST_DEPENDENCIES=pytest pytest-cov"
270
- conda install -n ${{ env.TEST_ENV_NAME }} ${{ env.PACKAGE_NAME }}=%PACKAGE_VERSION% %TEST_DEPENDENCIES% python=${{ matrix.python }} -c ${{ env.workdir }}/channel ${{ env.CHANNELS }}
270
+ conda install -n ${{ env.TEST_ENV_NAME }} ${{ env.PACKAGE_NAME }}=%PACKAGE_VERSION% %TEST_DEPENDENCIES% python=${{ matrix.python }} scipy -c ${{ env.workdir }}/channel ${{ env.CHANNELS }}
271
271
- name : Report content of test environment
272
272
shell : cmd /C CALL {0}
273
273
run : |
Original file line number Diff line number Diff line change 1
- _vendored / __pycache__ /
1
+ # CMake build and local install directory
2
2
build /
3
3
mkl_fft.egg-info /
4
- mkl_fft /__pycache__ /
4
+
5
+ # Byte-compiled / optimized / DLL files
6
+ __pycache__ /
7
+
5
8
mkl_fft /_pydfti.c
6
- mkl_fft /_pydfti.cpython-310-x86_64-linux-gnu.so
7
- mkl_fft /interfaces /__pycache__ /
9
+ mkl_fft /_pydfti.cpython * .so
8
10
mkl_fft /src /mklfft.c
9
- mkl_fft /tests /__pycache__ /
Original file line number Diff line number Diff line change 32
32
- pytest -v --pyargs mkl_fft
33
33
requires :
34
34
- pytest
35
+ - scipy
35
36
imports :
36
37
- mkl_fft
37
38
- mkl_fft.interfaces
Original file line number Diff line number Diff line change 32
32
- pytest -v --pyargs mkl_fft
33
33
requires :
34
34
- pytest
35
+ - scipy
35
36
imports :
36
37
- mkl_fft
37
38
- mkl_fft.interfaces
File renamed without changes.
You can’t perform that action at this time.
0 commit comments