From 65b122ad1eb31e5fa3f733c303993294034f2e52 Mon Sep 17 00:00:00 2001 From: MatthewMckee4 Date: Sat, 7 Feb 2026 18:43:10 +0000 Subject: [PATCH] Delete old wheels before building in `just test` Closes #434 --- justfile | 1 + 1 file changed, 1 insertion(+) diff --git a/justfile b/justfile index 8b883a42..16fc252b 100644 --- a/justfile +++ b/justfile @@ -1,6 +1,7 @@ # https://just.systems test *args: + rm -rf target/wheels maturin build @if command -v cargo-nextest > /dev/null 2>&1; then \ cargo nextest run {{args}}; \