#!/bin/sh -efu

for py in $(py3versions --supported 2>/dev/null); do
    echo "Testing with $py: "
    $py -m pytest genx/tests -v
done
