Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions test/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ func TestE2E(t *testing.T) {
)
}

// Skip Dynamic Resolver test because DNS resolver doesn't work properly in IPV6 Github worker
if tests.IPFamily == "ipv6" {
skipTests = append(skipTests,
tests.DynamicResolverBackendTest.ShortName,
)
}

cSuite, err := suite.NewConformanceTestSuite(suite.ConformanceOptions{
Client: c,
RestConfig: cfg,
Expand Down
Loading