#!/bin/bash -e

cp -a "tests" "${AUTOPKGTEST_TMP}"
cp -a "pytest.ini" "${AUTOPKGTEST_TMP}"

cd "${AUTOPKGTEST_TMP}"

for pybin in $(py3versions -s); do \
    ${pybin} -m pytest;\
done
