Source: python-pomegranate
Version: 0.13.5-2
Severity: normal
Tags: patch
The current autopkgtest script reads:
cd "$AUTOPKGTEST_TMP"
for py in $(py3versions -r 2>/dev/null)
do ${py} -m nose -v tests
done
But after the cd "$AUTOPKGTEST_TMP", py3versions -r fails to return
any python version, so the loop is never run.
A corrected version is obtained by running the cd after the
py3versions:
for py in $(py3versions -r 2>/dev/null)
cd "$AUTOPKGTEST_TMP"
do ${py} -m nose -v tests
done
Best wishes,
Julian