#!/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_get_local_ip and not test_async_get_local_ip" --ignore=tests/test_ssdp_listener.py -x 2>&1
done
