#!/bin/sh
set -eufx

cp -a tests "$AUTOPKGTEST_TMP/tests"
cd "$AUTOPKGTEST_TMP"

python3 -m unittest discover -v \
    --start-directory tests \
    --pattern '*_test.py'
