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

set -e

cwd=$(pwd)
cd test

for py3ver in $(py3versions -vs)
do
    echo "Running tests with Python ${py3ver}."
    /usr/bin/python${py3ver} -B -c "import nose; nose.main()"
done

cd $cwd