Hello Simon, Thank you for working on this, however I think your fix missed the quotation issue that I addressed in my MR, see this commit:
https://salsa.debian.org/python-team/packages/rgain3/-/merge_requests/1/diffs?commit_id=90792e05b33a3f59efea8e6527520c004d1a2bf1 (also attached as a patch, but I'm not sure my MUA will do The Right Thing)
From 90792e05b33a3f59efea8e6527520c004d1a2bf1 Mon Sep 17 00:00:00 2001 From: Simon Chopin <simon.cho...@canonical.com> Date: Mon, 25 Oct 2021 18:02:30 +0200 Subject: [PATCH] d/tests/python3: remove extraneous quotes (close #997855) The quotes meant that the loop was always run on two elements: "python3.X python3.Y" and python3. This isn't problematic as long as there's only one version of Python3 in the archive, but Ubuntu has just uploaded 3.10 alongside 3.9. --- debian/tests/python3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/tests/python3 b/debian/tests/python3 index 1be328c..3764892 100755 --- a/debian/tests/python3 +++ b/debian/tests/python3 @@ -5,7 +5,7 @@ cd "$AUTOPKGTEST_TMP" failed=0 -for python in "$(py3versions -s)" python3; do +for python in $(py3versions -s) python3; do "$python" -m pytest test || failed=1 done -- GitLab