#!/bin/bash
set -e

SRC="$PWD"
cd "$AUTOPKGTEST_TMP"
for py in $(pyversions -vi) ; do
  python$py -m unittest discover -s "${SRC}/tests";
done
