bugfix/update_tests #7

Merged
alexvanin merged 2 commits from dkirillov/s3-tests-parser:bugfix/update_tests into master 2024-11-27 11:13:35 +00:00
Showing only changes of commit 3ff610072c - Show all commits

View file

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