#!/bin/sh

set -e

for p in $(py3versions -s); do
    cd ${AUTOPKGTEST_TMP}
    cd $($p -c "import sitetree; print(sitetree.__path__[0])")
    $p -m pytest
done
