blob: 0acf9547390d4400b69914e4e31fc4be2f4b9fd2 [file] [log] [blame]
#!/bin/bash -ex
case "${1}" in
install)
git clone --depth=1 https://github.com/certbot/josepy
cd josepy
git rev-parse HEAD
pip install -e ".[tests]"
;;
run)
cd josepy
pytest src
;;
*)
exit 1
;;
esac