#!/bin/sh

set -e

cp -r pyproject.toml tests ${AUTOPKGTEST_TMP}
cd ${AUTOPKGTEST_TMP}
for p in $(py3versions -s); do
    $p -m pytest -k 'not test_can_log_errors and not test_errors_include_caller and not test_ignores_calls_on_different_lines' tests
done
