#!/bin/sh
# per example given in README.rst
echo "exec upstream unittests under Python 2"
case $(dpkg --print-architecture) in
    amd64|arm64|ppc64el)
        ;;
    *)
        echo "SKIPPED: healpy not available on this architecture"
        exit 0
        ;;
esac
exec python2 -m unittest discover
