#!/bin/bash

set -euo pipefail

for p in $(py3versions -s); do
    # Cannot run all of of the tests because of non DFSG-compliant test data
    "${p}" -m pytest tests/vttLib_test.py -v
done
