blob: 1ae9eb53c02cbcf16e26e8f94154c2199188cf95 [file] [edit]
#!/bin/bash -ex
case "${1}" in
install)
cd scapy
uv pip install tox
;;
run)
cd scapy
TOX_OVERRIDE="testenv:cryptography.deps=file://$(realpath ..)" tox -e cryptography
;;
*)
exit 1
;;
esac