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