From e74e7138fbe4b9b412feda75a283267ddfd39368 Mon Sep 17 00:00:00 2001 From: Alexandru Ardelean Date: Mon, 25 May 2026 08:54:10 +0300 Subject: [PATCH] python-argcomplete: add test-version.sh for CI The three CLI helpers shipped by python3-argcomplete (activate-global-python-argcomplete, register-python-argcomplete, python-argcomplete-check-easy-install-script) don't accept a --version flag and emit no PKG_VERSION string in their usage output. With all three executables missing the version, the generic CI test stage fails with "No executables in the package provided version 3.6.3". Add a test-version.sh that emits a line containing PKG_VERSION so the framework's "Version check override" passes. The existing test.sh already exercises the Python module import. Signed-off-by: Alexandru Ardelean --- lang/python/python-argcomplete/test-version.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 lang/python/python-argcomplete/test-version.sh diff --git a/lang/python/python-argcomplete/test-version.sh b/lang/python/python-argcomplete/test-version.sh new file mode 100755 index 0000000000..a7388e310f --- /dev/null +++ b/lang/python/python-argcomplete/test-version.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# +case "$1" in +python3-argcomplete|python3-argcomplete-src) + exit 0 + ;; +*) + echo "Untested package: $1" >&2 + exit 1 + ;; +esac