Skip to content

Commit

Permalink
Fixed conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
pazone committed Dec 19, 2024
1 parent 7e41ca5 commit d9e2699
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pkg/testing/define/define.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
"path/filepath"
"regexp"
"runtime"
"slices"
"strings"
"sync"
"testing"
Expand Down Expand Up @@ -143,8 +144,6 @@ func runOrSkip(t *testing.T, req Requirements, local bool, kubernetes bool) *Inf
if err := req.Validate(); err != nil {
panic(fmt.Sprintf("test %s has invalid requirements: %s", t.Name(), err))
}
<<<<<<< HEAD
=======

filteredGroups := GroupsFilter.values
if len(filteredGroups) > 0 && !slices.Contains(filteredGroups, req.Group) {
Expand All @@ -161,7 +160,6 @@ func runOrSkip(t *testing.T, req Requirements, local bool, kubernetes bool) *Inf
discoverTest(t, req)
}

>>>>>>> a7597b01d (Integration tests autodiscovery (#6199))
if !req.Local && local {
t.Skip("running local only tests and this test doesn't support local")
return nil
Expand Down

0 comments on commit d9e2699

Please sign in to comment.