summaryrefslogtreecommitdiff
path: root/debian/tests/python.sh
blob: b66e1018ce1ceba8aadbf09ede793717b8039bf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

set -e

for py3ver in $(py3versions -vs)
do
    echo "Running tests with Python ${py3ver}."
    /usr/bin/python${py3ver} -B debian/tests/python.py
    echo "---------"
done