#!/bin/bash

set -e

for py in $(py3versions --supported)
do
    cp debian/tests/hbv_C_Bj_Ba.fasta test/hbv_C_Bj_Ba.fasta
    pushd test
    echo "Testing with $py in $(pwd):"
    "$py" -m pytest test.py
    popd
done 
