File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 15
15
runs-on : ${{ matrix.os }}
16
16
strategy :
17
17
matrix :
18
- python-version : ['3.8 ']
18
+ python-version : ['3.10 ']
19
19
os : [ubuntu-latest]
20
+ pytest : ['"pytest<8.0"']
20
21
# pip cache paths
21
22
include :
22
23
- os : ubuntu-latest
40
41
# Install dependencies
41
42
- name : Install
42
43
run : |
43
- python -m pip install numpy scipy matplotlib pytest
44
+ python -m pip install numpy scipy matplotlib ${{matrix. pytest}}
44
45
python -m pip install -e .
45
46
46
47
- name : Self-test
61
62
62
63
- name : Run testmod a scipy submodule -- Public API onlly
63
64
run : |
64
- python -c'from scipy import linalg; from scpdt import testmod; testmod(linalg, verbose=True, strategy="api")'
65
+ python -mpip install pooch
66
+ python -c'from scipy import ndimage; from scpdt import testmod; testmod(ndimage, verbose=True, strategy="api")'
65
67
66
68
- name : Test pytest plugin
67
69
# This test will fail in a venv where scpdt has not been installed and the plugin has not been activated
You can’t perform that action at this time.
0 commit comments