#!/bin/sh
set -e

cp -r libdiscid/tests $ADTTMP
cd $ADTTMP/tests

PYVERS=$(pyversions -vi)
for py in $PYVERS ; do
  python$py -m pytest .
done
