diff --git a/tests/e2e/helpdesk/channels/messages/test_async_messages.py b/tests/e2e/helpdesk/channels/messages/test_async_messages.py index 2ce67dc9..2f94b7a2 100644 --- a/tests/e2e/helpdesk/channels/messages/test_async_messages.py +++ b/tests/e2e/helpdesk/channels/messages/test_async_messages.py @@ -5,10 +5,9 @@ from mpt_api_client.exceptions import MPTAPIError from mpt_api_client.resources.helpdesk.chat_messages import ChatMessage -pytestmark = [pytest.mark.flaky] +pytestmark = [pytest.mark.flaky, pytest.mark.skip(reason="Unskip when MPT-19696 unblocked")] -@pytest.mark.skip(reason="Unskip when MPT-19696 unblocked") async def test_list_channel_messages(async_channel_messages_service): result = await async_channel_messages_service.fetch_page(limit=1) @@ -16,7 +15,6 @@ async def test_list_channel_messages(async_channel_messages_service): assert all(isinstance(message, ChatMessage) for message in result) -@pytest.mark.skip(reason="Unskip when MPT-19696 unblocked") async def test_list_channel_messages_not_found(async_mpt_ops, invalid_channel_id): with pytest.raises(MPTAPIError) as error: await async_mpt_ops.helpdesk.channels.messages(invalid_channel_id).fetch_page(limit=1) diff --git a/tests/e2e/helpdesk/channels/messages/test_sync_messages.py b/tests/e2e/helpdesk/channels/messages/test_sync_messages.py index 4b3de529..8a49b47b 100644 --- a/tests/e2e/helpdesk/channels/messages/test_sync_messages.py +++ b/tests/e2e/helpdesk/channels/messages/test_sync_messages.py @@ -5,10 +5,9 @@ from mpt_api_client.exceptions import MPTAPIError from mpt_api_client.resources.helpdesk.chat_messages import ChatMessage -pytestmark = [pytest.mark.flaky] +pytestmark = [pytest.mark.flaky, pytest.mark.skip(reason="Unskip when MPT-19696 unblocked")] -@pytest.mark.skip(reason="Unskip when MPT-19696 unblocked") def test_list_channel_messages(channel_messages_service): result = channel_messages_service.fetch_page(limit=1) @@ -16,7 +15,6 @@ def test_list_channel_messages(channel_messages_service): assert all(isinstance(message, ChatMessage) for message in result) -@pytest.mark.skip(reason="Unskip when MPT-19696 unblocked") def test_list_channel_messages_not_found(mpt_ops, invalid_channel_id): with pytest.raises(MPTAPIError) as error: mpt_ops.helpdesk.channels.messages(invalid_channel_id).fetch_page(limit=1) diff --git a/tests/e2e/helpdesk/channels/test_async_channels.py b/tests/e2e/helpdesk/channels/test_async_channels.py index 58b8910c..32e3ee27 100644 --- a/tests/e2e/helpdesk/channels/test_async_channels.py +++ b/tests/e2e/helpdesk/channels/test_async_channels.py @@ -5,7 +5,7 @@ from mpt_api_client.exceptions import MPTAPIError from mpt_api_client.resources.helpdesk.channels import Channel -pytestmark = [pytest.mark.flaky, pytest.mark.skip(reason="Unskip after MPT-19124 completed")] +pytestmark = [pytest.mark.flaky, pytest.mark.skip(reason="Unskip when MPT-19696 unblocked")] async def test_get_channel(async_mpt_ops, channel_id): diff --git a/tests/e2e/helpdesk/channels/test_sync_channels.py b/tests/e2e/helpdesk/channels/test_sync_channels.py index a5509b7e..23c1402a 100644 --- a/tests/e2e/helpdesk/channels/test_sync_channels.py +++ b/tests/e2e/helpdesk/channels/test_sync_channels.py @@ -5,7 +5,7 @@ from mpt_api_client.exceptions import MPTAPIError from mpt_api_client.resources.helpdesk.channels import Channel -pytestmark = [pytest.mark.flaky, pytest.mark.skip(reason="Unskip after MPT-19124 completed")] +pytestmark = [pytest.mark.flaky, pytest.mark.skip(reason="Unskip when MPT-19696 unblocked")] def test_get_channel(mpt_ops, channel_id):