#!/bin/sh
set -e -u
export PYTHONWARNINGS=d
cd "$ADTTMP"
for version in $(pyversions -iv); do
    python${version} -m pytest --pyargs txzmq;
done
