#!/bin/bash set -e set -u helper=$PWD/debian/tests/upstream.py testdir=$PWD/src/python/test cd $AUTOPKGTEST_TMP for py3ver in $(py3versions -vs) do echo "Running tests with Python ${py3ver}." /usr/bin/python${py3ver} -B $helper $testdir echo "**********" done