From d0d5189753b4645b99af3e4a483ee9a1e6610433 Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Mon, 13 Jun 2022 13:45:36 +0200 Subject: [PATCH] add test targets to Justfile --- Justfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Justfile b/Justfile index c5c5a08..720c0f1 100644 --- a/Justfile +++ b/Justfile @@ -27,3 +27,9 @@ tool-gofumpt: @hash gofumpt> /dev/null 2>&1; if [ $? -ne 0 ]; then \ go install mvdan.cc/gofumpt@latest; \ fi + +test: + go test -race codeberg.org/codeberg/pages/server/... + +integration: + go test -race -tags integration codeberg.org/codeberg/pages/integration/...