#!/bin/bash

set -e

for py in $(py3versions -r 2> /dev/null)
do
    cp debian/tests/hbv_C_Bj_Ba.fasta test/hbv_C_Bj_Ba.fasta
    pushd test
    echo "Testing with $py in $(pwd):"
    nosetests3
    popd
done 
