summaryrefslogtreecommitdiff
path: root/debian/tests/python-upstream.sh
blob: 499cc0f2987afb1b04fec9bc3bda56b06e632582 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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