blob: 401313bd90aae994fdb6c9c1b14a11cf533fbe8f [file] [log] [blame] [edit]
#!/bin/bash -ex
case "${1}" in
install)
cd aws-dynamodb-encryption-python
uv pip install -e .
uv pip install -r test/upstream-requirements-py311.txt
;;
run)
cd aws-dynamodb-encryption-python
pytest -n auto test/ -m "local and not slow and not veryslow and not nope"
;;
*)
exit 1
;;
esac