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