From 0fb88cd3b72f1cae5b63f0dfc964e0417cbff515 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20P=C3=A9rex?= Date: Mon, 26 May 2025 19:13:46 +0100 Subject: [PATCH] chore: pass options to just runtest --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 6ba64e9..e141c63 100644 --- a/justfile +++ b/justfile @@ -256,12 +256,12 @@ expand *ARGS: benchmark *ARGS: cargo bench {{ARGS}} -runtest: +runtest *ARGS: @cd {{justfile_directory()}} && if test -d "test/documents" ; then \ rm -rf "test/documents"; \ fi @cd {{justfile_directory()}} && if test -r {{RUN_SRC}} ; then \ - ./{{RUN_SRC}}; \ + ./{{RUN_SRC}} {{ARGS}}; \ fi run *ARGS: