Commit a978fb78 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Install pytest with pip

parent 36adb6f9
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -6,11 +6,13 @@ set -x
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-py-project-within-miniconda.sh
source build-py-project-within-miniconda.sh

conda install --quiet --yes pytest
PY_EXE=python

conda list
# Using pip instead of conda here avoids ridiculous uninstall chains
# like these:https://gitlab.tiker.net/inducer/pyopencl/-/jobs/61543
${PY_EXE} -mpip install pytest

PY_EXE=python
conda list

TESTABLES=""
if [ -d test ]; then