summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGard Spreemann <gspr@nonempty.org>2020-01-21 15:40:30 +0100
committerGard Spreemann <gspr@nonempty.org>2020-01-21 15:40:30 +0100
commit39ad62e56e964873a5c75b317d112fb40e428309 (patch)
tree0b2849150c3584ec329c69f90d7a1461473e370a
parent748836e6d6a3933916009fb4e8fb046f5d6a5304 (diff)
Cosmetic.
-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