#!/bin/sh

set -e

cp -r pyproject.toml resources test ${AUTOPKGTEST_TMP}

for py in $(py3versions --supported); do
    $py -m pytest -v test -k "\
    not test_tls_v1.2\
    "
    #Disabled tests needing external server connection.
done
