@@ -17,11 +17,13 @@ async def async_created_category(async_mpt_ops, category_data):
1717 print (f"TEARDOWN - Unable to delete category { category .id } : { error .title } " ) # noqa: WPS421
1818
1919
20+ @pytest .mark .skip (reason = "async_created_category kills performance due to MPT-13785" )
2021def test_create_category (async_created_category , category_data ): # noqa: AAA01
2122 assert async_created_category .name == category_data ["name" ]
2223 assert async_created_category .description == category_data ["description" ]
2324
2425
26+ @pytest .mark .skip (reason = "async_created_category kills performance due to MPT-13785" )
2527async def test_get_category (async_mpt_vendor , async_created_category ):
2628 service = async_mpt_vendor .notifications .categories
2729
@@ -31,6 +33,7 @@ async def test_get_category(async_mpt_vendor, async_created_category):
3133 assert result .name == async_created_category .name
3234
3335
36+ @pytest .mark .skip (reason = "async_created_category kills performance due to MPT-13785" )
3437async def test_update_category (async_mpt_ops , async_created_category ):
3538 service = async_mpt_ops .notifications .categories
3639 update_data = {
@@ -44,6 +47,7 @@ async def test_update_category(async_mpt_ops, async_created_category):
4447 assert result .description == "Async updated description"
4548
4649
50+ @pytest .mark .skip (reason = "async_created_category kills performance due to MPT-13785" )
4751async def test_list_categories (async_mpt_vendor , async_created_category ):
4852 service = async_mpt_vendor .notifications .categories
4953
@@ -52,6 +56,7 @@ async def test_list_categories(async_mpt_vendor, async_created_category):
5256 assert any (category .id == async_created_category .id for category in result )
5357
5458
59+ @pytest .mark .skip (reason = "async_created_category kills performance due to MPT-13785" )
5560async def test_filter_categories (async_mpt_vendor , async_created_category ):
5661 service = async_mpt_vendor .notifications .categories
5762
@@ -64,6 +69,7 @@ async def test_filter_categories(async_mpt_vendor, async_created_category):
6469 assert result [0 ].id == async_created_category .id
6570
6671
72+ @pytest .mark .skip (reason = "async_created_category kills performance due to MPT-13785" )
6773async def test_publish_category (async_mpt_ops , async_created_category ):
6874 service = async_mpt_ops .notifications .categories
6975 unpublish_note_data = {"note" : "Unpublishing category for async testing" }
@@ -75,6 +81,7 @@ async def test_publish_category(async_mpt_ops, async_created_category):
7581 assert result .id == async_created_category .id
7682
7783
84+ @pytest .mark .skip (reason = "async_created_category kills performance due to MPT-13785" )
7885async def test_unpublish_category (async_mpt_ops , async_created_category ):
7986 service = async_mpt_ops .notifications .categories
8087 unpublish_note_data = {"note" : "Unpublishing category for async testing" }
@@ -91,6 +98,7 @@ async def test_category_not_found(async_mpt_vendor, invalid_category_id):
9198 await service .get (invalid_category_id )
9299
93100
101+ @pytest .mark .skip (reason = "async_created_category kills performance due to MPT-13785" )
94102async def test_delete_category (async_mpt_ops , async_created_category ):
95103 service = async_mpt_ops .notifications .categories
96104
0 commit comments