#!/bin/sh
set -e -u
export PYTHONWARNINGS=d
cd "$AUTOPKGTEST_TMP"
for python in $(py3versions -i); do
    $python -m pytest --pyargs txzmq;
done
