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

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