#!/bin/sh

set -e

for py in $(py3versions -s) ; do
    cd "$AUTOPKGTEST_TMP"
    echo "Testing with $py:"
    $py -m pytest --pyargs aplpy
done
