Expand autopkgtests to include all supported interpreters
authorStuart Prescott <stuart@debian.org>
Sun, 15 Mar 2026 00:44:30 +0000 (11:44 +1100)
committerStuart Prescott <stuart@debian.org>
Sun, 15 Mar 2026 00:44:30 +0000 (11:44 +1100)
debian/tests/control.gen
debian/tests/test_install_python3.sh

index f36c77c7d043da217f25dd8cb9f23a36f01659e8..e730967f7293c2d61f2da7bd8b7f0f2def8bd3d6 100755 (executable)
@@ -14,7 +14,7 @@ for binary_package in $(dh_listpackages|grep "python3-pyside6.qt"); do
     import_name=$(find sources/pyside6/PySide6/ -maxdepth 1 -type d| xargs -n 1 basename|grep -i ^$module_name$)
     echo "Test-Command: debian/tests/test_install_python3.sh $binary_package PySide6.$import_name
 Depends:
- python3,
+ python3-all,
  $binary_package,
 Restrictions: allow-stderr, superficial
 Features: test-name=$binary_package" >> $C
index 03af4cb3ff644474419e19d94a80c4f65a0d8ac5..5f416d2dc2f5abd525569670523eea3a2bfa636f 100755 (executable)
@@ -3,7 +3,7 @@
 set -e
 
 echo "Testing python3 package $1"
-for py in $(py3versions -d) ; do
+for py in $(py3versions -s) ; do
     cd "$AUTOPKGTEST_TMP" ;
     echo "Testing with $py:" ;
     $py -c "import $2; print($2)" ;