#!/bin/bash
set -e
SRC="${PWD}"

cd "${AUTOPKGTEST_TMP}"
for py in $(pyversions -vi) ; do
  python$py -m pytest ${SRC}/tests
done
