From: Matt Joiner Date: Tue, 12 Aug 2025 14:26:17 +0000 (+1000) Subject: Allow args to just test X-Git-Tag: v1.59.0~2^2~25 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=4025f74f048b5002a8e9638ea5fb50996c4988ee;p=btrtrc.git Allow args to just test --- 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