#! /bin/bash -x

for python in ${PYTHON-python3}; do
    PYTHONPATH=$(pwd) ${python/-dev/} -m pytest -vv "$@" || exit 1
done
