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)