From a3d7732ed838a0eefd3f3e85322371f2af1c4204 Mon Sep 17 00:00:00 2001 From: Carlos Quintana <74399022+cquintana92@users.noreply.github.com> Date: Wed, 7 May 2025 16:39:09 +0200 Subject: [PATCH] test: skip apple payment test (#2457) --- tests/api/test_apple.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/api/test_apple.py b/tests/api/test_apple.py index 7d2e2e97..b0f277b2 100644 --- a/tests/api/test_apple.py +++ b/tests/api/test_apple.py @@ -1,8 +1,11 @@ +import pytest + from flask import url_for from tests.api.utils import get_new_user_and_api_key +@pytest.mark.skip(reason="apple sandbox environment is too flaky") def test_apple_process_payment(flask_client): user, api_key = get_new_user_and_api_key()