Merge pull request #1481 from palnabarun/skip-flaky-test

Skipping TestClient::test_portforward_raw due to flakiness
This commit is contained in:
Haowei Cai (Roy) 2021-06-02 08:51:50 -07:00 committed by GitHub
commit f07176153e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -214,6 +214,10 @@ class TestClient(unittest.TestCase):
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)