#!/bin/sh

set -e

cp src/zope/proxy/tests/* "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

for py in $(py3versions -s); do
    echo "[*] testing $py:"
    $py -m unittest
done
