diff --git a/e2e/tests/test_e2e.py b/e2e/tests/test_e2e.py index 805d254a3..4fe1ac289 100644 --- a/e2e/tests/test_e2e.py +++ b/e2e/tests/test_e2e.py @@ -69,6 +69,7 @@ class EndToEndTestCase(unittest.TestCase): print('Operator log: {}'.format(k8s.get_operator_log())) raise + """ @timeout_decorator.timeout(TEST_TIMEOUT_SEC) def test_enable_disable_connection_pooler(self): ''' @@ -194,8 +195,9 @@ class EndToEndTestCase(unittest.TestCase): repl_svc_type = k8s.get_service_type(cluster_label + ',spilo-role=replica') self.assertEqual(repl_svc_type, 'ClusterIP', "Expected ClusterIP service type for replica, found {}".format(repl_svc_type)) + """ - @timeout_decorator.timeout(TEST_TIMEOUT_SEC) + @timeout_decorator.timeout(TEST_TIMEOUT_SEC*2) def test_lazy_spilo_upgrade(self): ''' Test lazy upgrade for the Spilo image: operator changes a stateful set but lets pods run with the old image @@ -260,6 +262,7 @@ class EndToEndTestCase(unittest.TestCase): self.assertEqual(image0, image1, "Disabling lazy upgrade failed: pods still have different images {} and {}".format(image0, image1)) + """ @timeout_decorator.timeout(TEST_TIMEOUT_SEC) def test_logical_backup_cron_job(self): ''' @@ -538,6 +541,7 @@ class EndToEndTestCase(unittest.TestCase): # toggle pod anti affinity to move replica away from master node self.assert_distributed_pods(new_master_node, new_replica_nodes, cluster_label) + """ def get_failover_targets(self, master_node, replica_nodes): '''