#!/bin/bash
set -efu

# Remark: For the non-default Python3 versions the provided scripts do not work
#         To simplify the test only default is checked since only this is user
#         relevant in terms of the scripts.
for py in $(py3versions --default)
do
	$py -m pytest -v
done

