Ah, oops, there's a bug in my script....
On Tue, Nov 23, 2021 at 09:01:20AM +0000, Julian Gilbey wrote:
> [...]
> #! /bin/sh
>
> set -e
>
> cp tests.py "$AUTOPKGTEST_TMP"
> cd "$AUTOPKGTEST_TMP"
> for py in $(py3versions -r 2>/dev/null) ; do
> echo "Testing with $py:"
> $py -m unittest -v tests.py
> done
The "cd" needs to come after the py3versions call:
#! /bin/sh
set -e
cp tests.py "$AUTOPKGTEST_TMP"
for py in $(py3versions -r 2>/dev/null) ; do
cd "$AUTOPKGTEST_TMP"
echo "Testing with $py:"
$py -m unittest -v tests.py
done
Julian