#!/bin/sh

set -e

cp -r setup.cfg tests ${AUTOPKGTEST_TMP}
cd ${AUTOPKGTEST_TMP}
for p in $(py3versions -s); do
    $p -m pytest -k 'not test_multiple_level_relations and not test_alias and not test_annotations and not test_sub_model'
done
