summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdebian/tests/upstream.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/tests/upstream.sh b/debian/tests/upstream.sh
index d648446..e450c59 100755
--- a/debian/tests/upstream.sh
+++ b/debian/tests/upstream.sh
@@ -6,12 +6,12 @@ set -u
testdir=$PWD/test
cd $AUTOPKGTEST_TMP
-for py3 in $(py3versions -s)
+for py3ver in $(py3versions -vs)
do
echo "Running tests with Python ${py3ver}."
for t in $(find $testdir -type f -name 'test_*.py')
do
echo "Running test ${t}."
- ${py3} -B $t
+ /usr/bin/python${py3ver} -B $t
done
done