chore(dev): add test:all mage command

This commit is contained in:
kolaente 2025-05-25 22:46:10 +02:00
parent 0d7e9168a4
commit c32a026ab6
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
1 changed files with 5 additions and 0 deletions

View File

@ -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