#!/bin/sh
set -e
cp -r test* "$AUTOPKGTEST_TMP/" && cd "$AUTOPKGTEST_TMP"
for py in $(py3versions -s); do
    $py -Wd -m pytest -v -k "not test_adapter_fails_to_start_and_takes_a_bit_to_init and not test_restart_takes_longer_than_watchdog_time and not test_adapter_init_fails_fallback_to_passive" 2>&1
done
