#!/bin/sh

set -e

cp -r tests pyproject.toml ${AUTOPKGTEST_TMP}
cd ${AUTOPKGTEST_TMP}
for p in $(py3versions -s); do
    $p -m pytest -k "not test_multiplecheckboxes and not test_fundamentals"
done
