From a92088f8e865b0587ae3a952141c1bb546e77550 Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Tue, 14 Jun 2022 19:13:18 +0200 Subject: [PATCH] target to run single unit test --- Justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Justfile b/Justfile index 665984c..f711172 100644 --- a/Justfile +++ b/Justfile @@ -31,6 +31,9 @@ tool-gofumpt: test: go test -race codeberg.org/codeberg/pages/server/... +test-run TEST: + go test -race -run "^{{TEST}}$" codeberg.org/codeberg/pages/server/... + integration: go test -race -tags integration codeberg.org/codeberg/pages/integration/...