From: Stuart Prescott Date: Sun, 15 Mar 2026 00:44:30 +0000 (+1100) Subject: Expand autopkgtests to include all supported interpreters X-Git-Tag: archive/raspbian/6.10.3-2+rpi1^2~32 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=2e1c3406db52e81510c54917dd23ef97453dc99a;p=pyside6.git Expand autopkgtests to include all supported interpreters --- diff --git a/debian/tests/control.gen b/debian/tests/control.gen index f36c77c7..e730967f 100755 --- a/debian/tests/control.gen +++ b/debian/tests/control.gen @@ -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 diff --git a/debian/tests/test_install_python3.sh b/debian/tests/test_install_python3.sh index 03af4cb3..5f416d2d 100755 --- a/debian/tests/test_install_python3.sh +++ b/debian/tests/test_install_python3.sh @@ -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)" ;