Files
packages/lang/python/python-execnet/test.sh
Alexandru Ardelean 1b53e6c07f python-execnet: bump to 2.1.2
Changelog: https://github.com/pytest-dev/execnet/blob/main/CHANGELOG
Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
2026-04-01 22:37:48 +03:00

16 lines
268 B
Bash
Executable File

#!/bin/sh
[ "$1" = python3-execnet ] || exit 0
python3 - << 'EOF'
import execnet
# Verify basic module attributes exist
assert hasattr(execnet, 'makegateway')
assert hasattr(execnet, 'MultiChannel')
assert hasattr(execnet, 'Group')
assert execnet.__version__
EOF