Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions tests/e2e/helpdesk/channels/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions tests/e2e/helpdesk/channels/messages/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ async def test_list_channel_messages(async_channel_messages_service):
assert len(result) > 0


@pytest.mark.skip(reason="Unskip after MPT-19124 completed")
async def test_list_channel_messages_not_found(async_mpt_ops, invalid_channel_id):
with pytest.raises(MPTAPIError, match=r"404 Not Found"):
await async_mpt_ops.helpdesk.channels.messages(invalid_channel_id).fetch_page(limit=1)
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ def test_list_channel_messages(channel_messages_service):
assert len(result) > 0


@pytest.mark.skip(reason="Unskip after MPT-19124 completed")
def test_list_channel_messages_not_found(mpt_ops, invalid_channel_id):
with pytest.raises(MPTAPIError, match=r"404 Not Found"):
mpt_ops.helpdesk.channels.messages(invalid_channel_id).fetch_page(limit=1)
3 changes: 0 additions & 3 deletions tests/e2e/helpdesk/chats/test_async_chats.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
pytestmark = [pytest.mark.flaky]


@pytest.mark.skip(reason="Unskip after MPT-19124 completed")
async def test_get_chat(async_mpt_ops, chat_id):
service = async_mpt_ops.helpdesk.chats

Expand All @@ -14,7 +13,6 @@ async def test_get_chat(async_mpt_ops, chat_id):
assert result.id == chat_id


@pytest.mark.skip(reason="Unskip after MPT-19124 completed")
async def test_list_chats(async_mpt_ops):
service = async_mpt_ops.helpdesk.chats

Expand All @@ -23,7 +21,6 @@ async def test_list_chats(async_mpt_ops):
assert len(result) > 0


@pytest.mark.skip(reason="Unskip after MPT-19124 completed")
async def test_update_chat(async_mpt_ops, chat_id, short_uuid):
service = async_mpt_ops.helpdesk.chats
new_description = f"e2e update {short_uuid}"
Expand Down
3 changes: 0 additions & 3 deletions tests/e2e/helpdesk/chats/test_sync_chats.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
pytestmark = [pytest.mark.flaky]


@pytest.mark.skip(reason="Unskip after MPT-19124 completed")
def test_get_chat(mpt_ops, chat_id):
service = mpt_ops.helpdesk.chats

Expand All @@ -14,7 +13,6 @@ def test_get_chat(mpt_ops, chat_id):
assert result.id == chat_id


@pytest.mark.skip(reason="Unskip after MPT-19124 completed")
def test_list_chats(mpt_ops):
service = mpt_ops.helpdesk.chats

Expand All @@ -23,7 +21,6 @@ def test_list_chats(mpt_ops):
assert len(result) > 0


@pytest.mark.skip(reason="Unskip after MPT-19124 completed")
def test_update_chat(mpt_ops, chat_id, short_uuid):
service = mpt_ops.helpdesk.chats
new_description = f"e2e update {short_uuid}"
Expand Down
1 change: 1 addition & 0 deletions tests/e2e/helpdesk/parameter_groups/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions tests/e2e/helpdesk/queues/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Loading