#!/bin/sh
set -e
cp -r test* "$AUTOPKGTEST_TMP/" && cd "$AUTOPKGTEST_TMP"
for py in $(py3versions -s); do
    $py -Wd -m pytest -v --asyncio-mode=auto -k "not test_idle_start__exits_queue_get_without_timeout_error and not test_idle" -x 2>&1
done
