diff --git a/cmd/parser/modules/tests.go b/cmd/parser/modules/tests.go index b79f9be..5fb1115 100644 --- a/cmd/parser/modules/tests.go +++ b/cmd/parser/modules/tests.go @@ -34,6 +34,9 @@ func runTestsCmd(cmd *cobra.Command, _ []string) error { groupTests := make(map[string][]string) for _, group := range testStruct.Groups { + if group.Skip { + continue + } groupTests[group.Name] = group.Tests }