From: Eneas U de Queiroz Date: Thu, 27 Jul 2023 19:51:39 +0000 (-0300) Subject: python-certifi: add github runtime test X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=219edcfa31ed2c55dc6bc4af049c92451157cf23;p=openwrt-packages.git python-certifi: add github runtime test This loads the module, which should return the path of the CA bundle and verifies that the file exists. Signed-off-by: Eneas U de Queiroz --- diff --git a/lang/python/python-certifi/test.sh b/lang/python/python-certifi/test.sh new file mode 100644 index 000000000..b2802165b --- /dev/null +++ b/lang/python/python-certifi/test.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +case "$1" in + *-src) + ;; + python3-certifi) + BUNDLE=$(python3 -m certifi) || { + echo "Failed to run the certfi module script. Exit status=$?." >&2 + echo "Output='$BUNDLE'" >&2 + exit 1 + } + ls -l "$BUNDLE" + ;; + *) + echo "Unexpected package '$1'" >&2 + exit 1 + ;; +esac