Sign in
android
/
platform
/
external
/
python
/
cryptography
/
0f787c52f60b8c41dadc630660dbb0135cbf6cfe
/
.
/
.travis
/
downstream.d
/
urllib3.sh
blob: dad06159846fbf217fde3474a91a4110c64a7a0a [
file
] [
log
] [
blame
]
#!/bin/bash -ex
case
"${1}"
in
install
)
git clone
--
depth
1
https
://
github
.
com
/
shazow
/
urllib3
cd urllib3
git rev
-
parse HEAD
pip install
-
r
./
dev
-
requirements
.
txt
pip install
-
e
".[socks]"
;;
run
)
cd urllib3
pytest test
;;
*)
exit
1
;;
esac