#!/bin/sh -ex


# Exécuter les tests pour chaque version de Python

export HOME="$AUTOPKGTEST_TMP"
export XDG_CACHE_HOME="$AUTOPKGTEST_TMP"

cd "$AUTOPKGTEST_TMP"

for py in $(py3versions -s 2>/dev/null);
do echo "Testing with $py:"
   $py -m unittest -v Orange.tests Orange.widgets.tests   
done
