echo "== Run tests (single processor) with default (real) build =="
python3 test/runtests.py --verbose

# note pytest does not support MPI tests

# assume standard test covers slepc4py-real, now test complex (non-verbose to simplify output)
echo "== Run tests (single processor) with complex build =="
SLEPC_DIR_COMPLEX=`pkg-config --variable=prefix SLEPc | sed "s/real/complex/"`
PETSC_DIR=`echo ${SLEPC_DIR_COMPLEX} | sed "s/slepc/petsc/g"` SLEPC_DIR=${SLEPC_DIR_COMPLEX} python3 test/runtests.py
