From b0004b46bcff5d38343419012fa6e91dbdf60f8e Mon Sep 17 00:00:00 2001 From: Lukasz Lancucki Date: Tue, 17 Mar 2026 17:00:03 +0000 Subject: [PATCH] test: mark helpdesk chat tests as flaky --- tests/e2e/helpdesk/chats/test_async_chats.py | 2 ++ tests/e2e/helpdesk/chats/test_sync_chats.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/tests/e2e/helpdesk/chats/test_async_chats.py b/tests/e2e/helpdesk/chats/test_async_chats.py index 830e9bb..39b6e75 100644 --- a/tests/e2e/helpdesk/chats/test_async_chats.py +++ b/tests/e2e/helpdesk/chats/test_async_chats.py @@ -2,6 +2,8 @@ from mpt_api_client.exceptions import MPTAPIError +pytestmark = [pytest.mark.flaky] + async def test_get_chat(async_mpt_ops, chat_id): service = async_mpt_ops.helpdesk.chats diff --git a/tests/e2e/helpdesk/chats/test_sync_chats.py b/tests/e2e/helpdesk/chats/test_sync_chats.py index 787f90e..31c8c52 100644 --- a/tests/e2e/helpdesk/chats/test_sync_chats.py +++ b/tests/e2e/helpdesk/chats/test_sync_chats.py @@ -2,6 +2,8 @@ from mpt_api_client.exceptions import MPTAPIError +pytestmark = [pytest.mark.flaky] + def test_get_chat(mpt_ops, chat_id): service = mpt_ops.helpdesk.chats