Sign in
android
/
platform
/
external
/
python
/
cryptography
/
refs/heads/upstream-main
/
.
/
.github
/
downstream.d
/
mitmproxy.sh
blob: 8a16f31c769212530dab3d871bcf0dbfed065987 [
file
] [
edit
]
#!/bin/bash -ex
case
"${1}"
in
install
)
cd mitmproxy
uv pip install
-
r
<(
uv export
--
locked
)
-
e
.
;;
run
)
cd mitmproxy
pytest test
;;
*)
exit
1
;;
esac