#!/bin/sh
set -euf

cd $AUTOPKGTEST_TMP

for py in $(py3versions -s); do
    echo "=== $py ==="
    $py -m twisted.trial foolscap
done
