mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
* add tests to verify we haven't broken the current pyopenssl release * add CRL pyopenssl fallback * simplify CRL with helpers * more readable pyopenssl-release
18 lines
377 B
Bash
Executable file
18 lines
377 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
case "${1}" in
|
|
install)
|
|
VERSION=$(curl https://pypi.org/pypi/pyOpenSSL/json | jq -r .info.version)
|
|
git clone https://github.com/pyca/pyopenssl
|
|
cd pyopenssl
|
|
git checkout "$VERSION"
|
|
pip install -e ".[test]"
|
|
;;
|
|
run)
|
|
cd pyopenssl
|
|
pytest tests
|
|
;;
|
|
*)
|
|
exit 1
|
|
;;
|
|
esac
|