We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 308da85 commit 6aad333Copy full SHA for 6aad333
tests/internal/e2elib/e2elib.go
@@ -64,11 +64,7 @@ type TestMainConfig struct {
64
// When the inferenceExtension flag is set to true, it also installs the Inference Extension and the
65
// Inference Pool resources, and the Envoy Gateway configuration which are required for the tests.
66
func TestMain(m *testing.M, config TestMainConfig) {
67
- // Extend timeout for upgrade tests that need more time
68
- timeout := 5 * time.Minute
69
- if len(config.RegistryVersion) != 0 {
70
- timeout = 10 * time.Minute
71
- }
+ timeout := 30 * time.Second
72
ctx, cancel := context.WithDeadline(context.Background(), time.Now().Add(timeout))
73
74
// The following code sets up the kind cluster, installs the Envoy Gateway, and installs the AI Gateway.
0 commit comments