Add a script to benchmark uninstalls (#78)

This commit is contained in:
Charlie Marsh
2023-10-09 16:59:15 -04:00
committed by GitHub
parent ba2b200fce
commit f03c605bde
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env sh
###
# Benchmark the uninstall command against `pip`.
#
# Example usage:
#
# ./scripts/benchmarks/uninstall.sh numpy
###
set -euxo pipefail
TARGET=${1}
hyperfine --runs 20 --warmup 3 --prepare "rm -rf .venv && virtualenv .venv && source activate .venv/bin/activate && pip install ${TARGET}" \
"./target/release/puffin-cli uninstall ${TARGET}" \
"pip uninstall -y ${TARGET}"