Skip to content

Commit

Permalink
fix panic
Browse files Browse the repository at this point in the history
Signed-off-by: Jintao Zhang <zhangjintao9020@gmail.com>
  • Loading branch information
tao12345666333 committed Apr 12, 2024
1 parent 634dd6e commit bd0d373
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/conformance/gateway_conformance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
package conformance

import (
"embed"
"io/fs"
"os"
"path"
"testing"
Expand All @@ -19,6 +21,9 @@ import (
"github.com/kong/kubernetes-ingress-controller/v3/test/internal/testenv"
)

//go:embed *
var Manifests embed.FS

var skippedTestsForTraditionalRoutes = []string{
// core conformance
tests.HTTPRouteHeaderMatching.ShortName,
Expand Down Expand Up @@ -70,6 +75,7 @@ func TestGatewayConformance(t *testing.T) {
Debug: true,
CleanupBaseResources: !testenv.IsCI(),
BaseManifests: conformanceTestsBaseManifests,
ManifestFS: []fs.FS{&Manifests},
SupportedFeatures: sets.New(supportedFeatures...),
SkipTests: skippedTests,
ConformanceProfiles: sets.New(
Expand Down

0 comments on commit bd0d373

Please sign in to comment.