#!/bin/sh

set -e

cd ${AUTOPKGTEST_TMP}
for p in $(py3versions -s); do
    $p -m pytest --pyargs pylibdmtx.tests
done
