#!/bin/sh

set -e

cd "$AUTOPKGTEST_TMP"

for py in $(py3versions --supported); do
    echo "[*] testing $py:"
    $py -m pytest --pyargs zope.configuration
done
