summaryrefslogtreecommitdiff
path: root/debian/tests/upstream.sh
blob: 419d9a6fa56495f46f65ff9129b30b2b74354cdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

set -e
set -u

testdir=test
cp -R $testdir $AUTOPKGTEST_TMP
cd $AUTOPKGTEST_TMP

for py3ver in $(py3versions -vs)
do
    echo "Running tests with Python ${py3ver}."
    /usr/bin/python${py3ver} -B -m pytest $testdir
    rm -rf .pytest_cache
    echo "**********"
done