#!/bin/bash
set -e

cp -r src/test "$AUTOPKGTEST_TMP"

for py in $(pyversions -r 2>/dev/null)
 do cd "$AUTOPKGTEST_TMP"
 echo "Testing with $py:"
 $py -m pytest -m "not webtest"
 done
