@@ -84,14 +84,12 @@ jobs:
84
84
install-torch : [0]
85
85
install-xarray : [0]
86
86
part :
87
- - " tests --ignore=tests/tensor --ignore=tests/scan --ignore=tests/sparse --ignore=tests/ xtensor"
87
+ - " tests --ignore=tests/tensor --ignore=tests/scan --ignore=tests/xtensor"
88
88
- " tests/scan"
89
- - " tests/sparse"
90
- - " tests/tensor --ignore=tests/tensor/conv --ignore=tests/tensor/rewriting --ignore=tests/tensor/test_math.py --ignore=tests/tensor/test_basic.py --ignore=tests/tensor/test_inplace.py --ignore=tests/tensor/test_blas.py --ignore=tests/tensor/test_elemwise.py --ignore=tests/tensor/test_math_scipy.py"
91
- - " tests/tensor/conv"
89
+ - " tests/tensor --ignore=tests/tensor/rewriting --ignore=tests/tensor/test_math.py --ignore=tests/tensor/test_basic.py --ignore=tests/tensor/test_inplace.py --ignore=tests/tensor/conv --ignore=tests/tensor/test_blas.py --ignore=tests/tensor/test_elemwise.py --ignore=tests/tensor/test_math_scipy.py"
92
90
- " tests/tensor/rewriting"
93
91
- " tests/tensor/test_math.py"
94
- - " tests/tensor/test_basic.py tests/tensor/test_inplace.py"
92
+ - " tests/tensor/test_basic.py tests/tensor/test_inplace.py tests/tensor/conv "
95
93
- " tests/tensor/test_blas.py tests/tensor/test_elemwise.py tests/tensor/test_math_scipy.py"
96
94
exclude :
97
95
- python-version : " 3.10"
@@ -123,14 +121,21 @@ jobs:
123
121
numpy-version : " ~=2.1.0"
124
122
fast-compile : 0
125
123
float32 : 0
126
- part : " tests/link/numba"
124
+ part : " tests/link/numba --ignore=tests/link/numba/test_slinalg.py "
127
125
- install-numba : 1
128
126
os : " ubuntu-latest"
129
127
python-version : " 3.13"
130
128
numpy-version : " ~=2.1.0"
131
129
fast-compile : 0
132
130
float32 : 0
133
- part : " tests/link/numba"
131
+ part : " tests/link/numba --ignore=tests/link/numba/test_slinalg.py"
132
+ - install-numba : 1
133
+ os : " ubuntu-latest"
134
+ python-version : " 3.13"
135
+ numpy-version : " ~=2.1.0"
136
+ fast-compile : 0
137
+ float32 : 0
138
+ part : " tests/link/numba/test_slinalg.py"
134
139
- install-jax : 1
135
140
os : " ubuntu-latest"
136
141
python-version : " 3.10"
@@ -207,7 +212,7 @@ jobs:
207
212
if [[ $INSTALL_TORCH == "1" ]]; then micromamba install --yes -q -c conda-forge "python~=${PYTHON_VERSION}" pytorch pytorch-cuda=12.1 "mkl<=2024.0" -c pytorch -c nvidia; fi
208
213
if [[ $INSTALL_XARRAY == "1" ]]; then micromamba install --yes -q -c conda-forge "python~=${PYTHON_VERSION}" xarray xarray-einstats; fi
209
214
pip install pytest-sphinx
210
-
215
+
211
216
pip install -e ./
212
217
micromamba list && pip freeze
213
218
python -c 'import pytensor; print(pytensor.config.__str__(print_doc=False))'
@@ -218,7 +223,7 @@ jobs:
218
223
fi
219
224
env :
220
225
PYTHON_VERSION : ${{ matrix.python-version }}
221
- NUMPY_VERSION : ${{ matrix.numpy-version }}
226
+ NUMPY_VERSION : ${{ matrix.numpy-version }}
222
227
INSTALL_NUMBA : ${{ matrix.install-numba }}
223
228
INSTALL_JAX : ${{ matrix.install-jax }}
224
229
INSTALL_TORCH : ${{ matrix.install-torch}}
@@ -343,4 +348,3 @@ jobs:
343
348
directory : ./coverage/
344
349
fail_ci_if_error : true
345
350
token : ${{ secrets.CODECOV_TOKEN }}
346
-
0 commit comments