[#7] Ignore transitively skipped tests

Signed-off-by: Denis Kirillov <d.kirillov@yadro.com>
This commit is contained in:
Denis Kirillov 2024-11-27 12:44:33 +03:00
parent 605ebf4fcf
commit 3ff610072c

View file

@ -34,6 +34,9 @@ func runTestsCmd(cmd *cobra.Command, _ []string) error {
groupTests := make(map[string][]string) groupTests := make(map[string][]string)
for _, group := range testStruct.Groups { for _, group := range testStruct.Groups {
if group.Skip {
continue
}
groupTests[group.Name] = group.Tests groupTests[group.Name] = group.Tests
} }