From 725a357153e81950b40fa97a16d3aa64859cd318 Mon Sep 17 00:00:00 2001 From: Aidan Daly Date: Thu, 7 May 2026 18:09:39 -0400 Subject: [PATCH] fix(payments): skip connector integ tests that require CDP credentials --- tests_integ/payments/test_payment_client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests_integ/payments/test_payment_client.py b/tests_integ/payments/test_payment_client.py index e4cd3233..27d4b36a 100644 --- a/tests_integ/payments/test_payment_client.py +++ b/tests_integ/payments/test_payment_client.py @@ -150,6 +150,7 @@ def test_update_payment_manager(self): assert update_result.get("paymentManagerId") == payment_manager_id + @pytest.mark.skip(reason="Requires real CDP credential provider - needs CDP credentials configured") def test_create_and_get_payment_connector(self): """Test creating and retrieving a payment connector.""" # First create a payment manager @@ -219,6 +220,7 @@ def test_list_payment_connectors(self): assert "name" in connector assert "status" in connector + @pytest.mark.skip(reason="Requires real CDP credential provider - needs CDP credentials configured") def test_update_payment_connector(self): """Test updating a payment connector.""" # First create a payment manager