Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests_integ/payments/test_payment_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1100,6 +1100,7 @@ def _retry_with_backoff(fn, max_attempts=5, initial_delay=5):
raise
time.sleep(initial_delay * (2**attempt))

@pytest.mark.skip(reason="AgentCredentialProviderService 500 in us-east-1, payments oncall investigating")
def test_bearer_token_real_api_call(self):
"""Test a real API call using bearer token from Cognito.

Expand All @@ -1120,6 +1121,7 @@ def test_bearer_token_real_api_call(self):
assert isinstance(result, dict)
assert "paymentInstruments" in result

@pytest.mark.skip(reason="AgentCredentialProviderService 500 in us-east-1, payments oncall investigating")
def test_token_provider_real_api_call(self):
"""Test a real API call using token_provider with Cognito.

Expand All @@ -1144,6 +1146,7 @@ def cognito_provider():
assert "paymentInstruments" in result
assert call_count["n"] >= 1

@pytest.mark.skip(reason="AgentCredentialProviderService 500 in us-east-1, payments oncall investigating")
def test_bearer_create_session_real_api_call(self):
"""Test creating a payment session using bearer token auth.

Expand Down
Loading