Skip to content

Commit cf5d898

Browse files
committed
Verbose pip install and failed assertion message
1 parent 833a3e8 commit cf5d898

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@ jobs:
120120
mamba install --yes -q "python~=${PYTHON_VERSION}=*_cpython" mkl numpy scipy pip mkl-service graphviz cython pytest coverage pytest-cov pytest-benchmark sympy
121121
if [[ $INSTALL_NUMBA == "1" ]]; then mamba install --yes -q -c conda-forge "python~=${PYTHON_VERSION}=*_cpython" "numba>=0.57" numba-scipy; fi
122122
mamba install --yes -q -c conda-forge "python~=${PYTHON_VERSION}=*_cpython" jax jaxlib numpyro
123-
pip install -e ./
123+
pip install -vvv -e ./
124124
mamba list && pip freeze
125125
python -c 'import pytensor; print(pytensor.config.__str__(print_doc=False))'
126-
python -c 'import pytensor; assert(pytensor.config.blas__ldflags != "")'
126+
python -c 'import pytensor; assert pytensor.config.blas__ldflags != "", "Blas flags are empty"'
127127
env:
128128
PYTHON_VERSION: ${{ matrix.python-version }}
129129
INSTALL_NUMBA: ${{ matrix.install-numba }}

0 commit comments

Comments
 (0)