#!/bin/sh

set -e

cp -r test_settings.py test_urlconf.py ${AUTOPKGTEST_TMP}
cd ${AUTOPKGTEST_TMP}
for p in $(py3versions -s); do
    $p -m pytest --ds test_settings --pyargs adminplus.tests
done
