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
2 changes: 0 additions & 2 deletions tests/e2e/notifications/categories/test_async_categories.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ async def test_filter_categories(async_mpt_vendor, category_id):
assert result[0].id == category_id


@pytest.mark.skip(reason="async_created_category kills performance due to MPT-13785")
async def test_publish_category(async_mpt_ops, async_created_category):
service = async_mpt_ops.notifications.categories
unpublish_note_data = {"note": "Unpublishing category for async testing"}
Expand All @@ -64,7 +63,6 @@ async def test_publish_category(async_mpt_ops, async_created_category):
assert result.id == async_created_category.id


@pytest.mark.skip(reason="async_created_category kills performance due to MPT-13785")
async def test_unpublish_category(async_mpt_ops, async_created_category):
service = async_mpt_ops.notifications.categories
unpublish_note_data = {"note": "Unpublishing category for async testing"}
Expand Down
3 changes: 0 additions & 3 deletions tests/e2e/notifications/categories/test_sync_categories.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ def test_get_category(mpt_client, category_id):
assert result.id == category_id


@pytest.mark.skip(reason="created_category kills performance due to MPT-13785")
def test_update_category(mpt_ops, created_category):
service = mpt_ops.notifications.categories
update_data = {
Expand All @@ -54,7 +53,6 @@ def test_filter_categories(mpt_client, category_id):
assert result[0].id == category_id


@pytest.mark.skip(reason="created_category kills performance due to MPT-13785")
def test_publish_category(mpt_ops, created_category):
service = mpt_ops.notifications.categories
unpublish_note_data = {"note": "Unpublishing category for testing"}
Expand All @@ -66,7 +64,6 @@ def test_publish_category(mpt_ops, created_category):
assert result.id == created_category.id


@pytest.mark.skip(reason="created_category kills performance due to MPT-13785")
def test_unpublish_category(mpt_ops, created_category):
service = mpt_ops.notifications.categories
unpublish_note_data = {"note": "Unpublishing category for testing"}
Expand Down