From 9d34f95f62cb449659b603b53d4bfc6c3abb4cda Mon Sep 17 00:00:00 2001 From: Lukasz Lancucki Date: Fri, 17 Apr 2026 09:20:42 +0100 Subject: [PATCH] test(e2e): remove obsolete skip markers from category tests --- tests/e2e/notifications/categories/test_async_categories.py | 2 -- tests/e2e/notifications/categories/test_sync_categories.py | 3 --- 2 files changed, 5 deletions(-) diff --git a/tests/e2e/notifications/categories/test_async_categories.py b/tests/e2e/notifications/categories/test_async_categories.py index efe53a75..f5d32aa9 100644 --- a/tests/e2e/notifications/categories/test_async_categories.py +++ b/tests/e2e/notifications/categories/test_async_categories.py @@ -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"} @@ -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"} diff --git a/tests/e2e/notifications/categories/test_sync_categories.py b/tests/e2e/notifications/categories/test_sync_categories.py index 6c8bc1a4..21fe1005 100644 --- a/tests/e2e/notifications/categories/test_sync_categories.py +++ b/tests/e2e/notifications/categories/test_sync_categories.py @@ -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 = { @@ -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"} @@ -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"}