From c32a026ab6a0936f6461cea0d6bc79ece178e8d7 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 25 May 2025 22:46:10 +0200 Subject: [PATCH] chore(dev): add test:all mage command --- magefile.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/magefile.go b/magefile.go index ecc4ef3ce..b6238ec9b 100644 --- a/magefile.go +++ b/magefile.go @@ -399,6 +399,11 @@ func (Test) Integration() { runAndStreamOutput("go", "test", Goflags[0], "-p", "1", "-timeout", "45m", PACKAGE+"/pkg/integrations") } +func (Test) All() { + mg.Deps(initVars) + mg.Deps(Test.Unit, Test.Integration) +} + type Check mg.Namespace // Checks if the swagger docs need to be re-generated from the code annotations