#!/bin/sh
set -e
cp -r tox.ini manage.py test* "$AUTOPKGTEST_TMP/" && cd "$AUTOPKGTEST_TMP"
for py in $(py3versions -s); do
    $py -Wd -m pytest -v -x --ignore=tests/allauth/  --ds=test_settings tests 2>&1
    $py -Wd -m pytest -v -x --ignore=tests/basic/  --ds=test_allauth_settings tests 2>&1
done
