From: Alexandru Ardelean Date: Sun, 9 Aug 2026 09:40:50 +0000 (+0300) Subject: python-pytest-forked: add test script X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=1967bdda14512068e09322a212489da13f3be438;p=openwrt-packages.git python-pytest-forked: add test script Add a CI test.sh exercising basic package functionality. Signed-off-by: Alexandru Ardelean --- diff --git a/lang/python/python-pytest-forked/test.sh b/lang/python/python-pytest-forked/test.sh new file mode 100755 index 000000000..b714a54e9 --- /dev/null +++ b/lang/python/python-pytest-forked/test.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +[ "$1" = python3-pytest-forked ] || exit 0 + +# The plugin must register its --forked option with the installed pytest, +# which proves both the plugin and its pytest dependency import cleanly. +if ! python3 -m pytest --help 2>&1 | grep -- "--forked"; then + echo "FAIL: pytest-forked did not register the --forked option" + exit 1 +fi