From 039bcc8e00182a9ac3adfd2d03a5df164c46d86b Mon Sep 17 00:00:00 2001 From: Artur Troian Date: Mon, 19 Aug 2024 17:59:14 -0500 Subject: [PATCH] fix: reenable e2e tests Signed-off-by: Artur Troian --- integration/e2e_test.go | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/integration/e2e_test.go b/integration/e2e_test.go index ad4aec9f..3a545086 100644 --- a/integration/e2e_test.go +++ b/integration/e2e_test.go @@ -572,18 +572,18 @@ func getKubernetesIP() string { func TestIntegrationTestSuite(t *testing.T) { integrationTestOnly(t) - // suite.Run(t, new(E2EContainerToContainer)) - // suite.Run(t, new(E2EAppNodePort)) + suite.Run(t, new(E2EContainerToContainer)) + suite.Run(t, new(E2EAppNodePort)) suite.Run(t, new(E2EDeploymentUpdate)) - // suite.Run(t, new(E2EApp)) - // suite.Run(t, new(E2EPersistentStorageDefault)) - // suite.Run(t, new(E2EPersistentStorageBeta2)) - // suite.Run(t, new(E2EPersistentStorageDeploymentUpdate)) + suite.Run(t, new(E2EApp)) + suite.Run(t, new(E2EPersistentStorageDefault)) + suite.Run(t, new(E2EPersistentStorageBeta2)) + suite.Run(t, new(E2EPersistentStorageDeploymentUpdate)) // suite.Run(t, new(E2EStorageClassRam)) - // suite.Run(t, new(E2EMigrateHostname)) - // suite.Run(t, new(E2EJWTServer)) - // suite.Run(t, new(E2ECustomCurrency)) - // suite.Run(t, &E2EIPAddress{IntegrationTestSuite{ipMarketplace: true}}) + suite.Run(t, new(E2EMigrateHostname)) + suite.Run(t, new(E2EJWTServer)) + suite.Run(t, new(E2ECustomCurrency)) + suite.Run(t, &E2EIPAddress{IntegrationTestSuite{ipMarketplace: true}}) } func (s *IntegrationTestSuite) waitForBlocksCommitted(height int) error {