From 73f119aa7a6c08c9719b11ac531d2786122eb06f Mon Sep 17 00:00:00 2001 From: Nabarun Pal Date: Fri, 28 May 2021 22:49:17 +0530 Subject: [PATCH] Skipping TestClient::test_portforward_raw due to flakiness The test is flaking a lot resulting in dev work to be slowed down. This needs to be investigated and resolved. Only then, the test should be reenabled. See: https://github.com/kubernetes-client/python/issues/1300 Signed-off-by: Nabarun Pal --- kubernetes/e2e_test/test_client.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kubernetes/e2e_test/test_client.py b/kubernetes/e2e_test/test_client.py index 82d77eaf0d..1034f0ef0d 100644 --- a/kubernetes/e2e_test/test_client.py +++ b/kubernetes/e2e_test/test_client.py @@ -214,6 +214,10 @@ def test_exit_code(self): resp = api.delete_namespaced_pod(name=name, body={}, namespace='default') + # Skipping this test as this flakes a lot + # See: https://github.com/kubernetes-client/python/issues/1300 + # Re-enable the test once the flakiness is investigated + @unittest.skip("skipping due to extreme flakiness") def test_portforward_raw(self): client = api_client.ApiClient(configuration=self.config) api = core_v1_api.CoreV1Api(client)