#!/bin/sh
set -e -u
cp -a llvmlite/tests "$ADTTMP"
cd "$ADTTMP"
for py in $(pyversions -i); do echo "$py:\n"; $py -m unittest discover -v 2>&1; done
