mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 19:02:09 +00:00
Changelog: https://github.com/pytest-dev/execnet/blob/main/CHANGELOG Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
16 lines
268 B
Bash
Executable File
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
|