blob: f4fb094a770da53d17e0068712b43592584e23a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
set -eu
. debian/tests/common
# make sure "python" points to python3 as this is not configurable
# in the regression script
mkdir python3env
ln -s /usr/bin/python3 python3env/python
echo "Running test suite ..."
PATH="$(pwd)/python3env:$PATH" ./regression -T live -m python
|