#!/bin/sh

set -e

cd ${AUTOPKGTEST_TMP}
for p in $(py3versions -s); do
    $p -m pytest $(python3 -c "import importlib.resources; print(importlib.resources.files('mock'))")/tests/test*.py -o cache_dir=${AUTOPKGTEST_TMP}
done
