python3-lxml: add package guard to test.sh

The test.sh lacked a package name guard, causing it to run (and fail)
when the -src subpackage was tested without python3 installed.
Add the standard guard to skip the test for non-main packages.

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
This commit is contained in:
Alexandru Ardelean
2026-04-09 10:22:10 +03:00
committed by Alexandru Ardelean
parent a547770f98
commit 5264f85e22

View File

@@ -1,5 +1,7 @@
#!/bin/sh
[ "$1" = python3-lxml ] || exit 0
EXP_VER="$2"
python3 - << EOF