blob: c4faaf6ef4e4cbe99764040c13895cb2332b819b [file] [log] [blame] [edit]
#!/bin/bash -ex
case "${1}" in
install)
cd aws-encryption-sdk-python
uv pip install -e .
uv pip install -r test/upstream-requirements-py311.txt
;;
run)
cd aws-encryption-sdk-python
pytest -m local test/ --ignore test/mpl/
;;
*)
exit 1
;;
esac