From 4025f74f048b5002a8e9638ea5fb50996c4988ee Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Wed, 13 Aug 2025 00:26:17 +1000 Subject: [PATCH] Allow args to just test --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 9484a96e..92e52bbd 100644 --- a/justfile +++ b/justfile @@ -4,8 +4,8 @@ check: act: act -j test --matrix go-version:'1.24' --env-file .empty.env -test: build-possum - go test -race -failfast ./... +test *args: build-possum + go test -race -failfast {{ args }} ./... build-possum: cd storage/possum/lib && cargo build -- 2.51.0