#!/bin/sh
set -e -u
export PYTHONWARNINGS=d
cd "$ADTTMP"
for version in $(pyversions -iv); do
    py.test-$version --pyargs txzmq;
done
