#!/bin/sh

set -e

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