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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

17
scripts/benchmarks/uninstall.sh Executable file
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}"