#!/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 -x -k "not test_async_client_validation_fetch_schema_from_server_valid_query" 2>&1
done
