#!/bin/sh

set -e -u

cp -a tests conftest.py "${AUTOPKGTEST_TMP}"

# Some tests are which are not successful in the autopkgtest could be excluded
# here.
PYTEST_OPTIONS=""

for py3vers in $(py3versions -s); do
    echo
    echo "***************************"
    echo "*** Testing with ${py3vers}"
    echo "***************************"
    echo
    cd ${AUTOPKGTEST_TMP} && \
        echo "Content of current working folder:\n" && \
        ls -la && \
        echo "Running tests...\n" && \
        ${py3vers} -m pytest "${PYTEST_OPTIONS}" && \
        rm -rf .pytest_cache || exit 1
done

echo

exit 0
