{"name": "test_no_goods_confirm_zero_picking[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: 4278192642 in wrong status: PROBLEMATIC_WAITING_CANCELING\nassert 'PROBLEMATIC_...ING_CANCELING' == 'CANCELED'\n  \n  - CANCELED\n  + PROBLEMATIC_WAITING_CANCELING", "trace": "self = <tests.wms.test_assembly.test_lost_goods.TestLostGoods object at 0x7426003ba750>\nwms_provider_warehouse_stock = WMSProviderWarehouseStockDTO(warehouse=WMSWarehouse(id=1693627, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, ff...ider_name='YaMarket'), stocks=<src.framework.wms.builders.availability.stock.WMSStockBuilder object at 0x7425fdd53250>)\n\n    def test_no_goods_confirm_zero_picking(self, wms_provider_warehouse_stock: DTO):\n        # Check cell starter conditions\n        sku_cell_info = AvailabilityQueries().get_sku_cell_infos(\n            sku_id=wms_provider_warehouse_stock.stocks.items[0].sku,\n            cell_key=wms_provider_warehouse_stock.stocks.cell_key,\n        )[0]\n        assert sku_cell_info.SkuCellBarcodeInfo.amount == wms_provider_warehouse_stock.stocks.items[0].qty\n        assert sku_cell_info.SkuCell.inventory_needed is False\n        assert sku_cell_info.SkuCellBarcodeInfo.inventory_needed is False\n    \n        # Create order and transition through states until it reaches problematic status due to zero picking\n        order = WMSOrderBuilder(\n            warehouse=wms_provider_warehouse_stock.warehouse,\n            items=wms_provider_warehouse_stock.stocks.items,\n            user=wms_provider_warehouse_stock.stocks.user,\n            provider=wms_provider_warehouse_stock.provider,\n            headers=wms_provider_warehouse_stock.stocks.headers,\n        ).login_or_refresh()\n    \n        order.state_created()\n        order.state_ready()\n        order.state_in_queue()\n        order.outbound_picking_with_no_goods(zero_picking=True)\n        wait_order_assembly(\n            order_id=order.order.order_id, order_status=AssemblyOrderStatus.PROBLEMATIC_WAITING_CANCELING\n        )\n    \n        # Check sku amount in cell after lost goods\n        sku_cell_info = AvailabilityQueries().get_sku_cell_infos(\n            sku_id=wms_provider_warehouse_stock.stocks.items[0].sku,\n            cell_key=order.picking.data.no_goods_cell_keys[0],\n        )[0]\n        assert sku_cell_info.SkuCellBarcodeInfo.amount == 0\n    \n        # Create and update lost goods record, verify it's in NEED_CONFIRM status\n        lost_goods = WMSLostGoodsBuilder(\n            cell_key=order.picking.data.no_goods_cell_keys[0],\n            sku_barcode=wms_provider_warehouse_stock.stocks.items[0].barcode,\n            warehouse=wms_provider_warehouse_stock.warehouse,\n            headers=wms_provider_warehouse_stock.stocks.headers,\n        ).update_lost_good()\n        assert (\n            lost_goods.data.lost_good.status == AvailabilityLostGoodStatus.NEED_CONFIRM\n        ), f\"lost good in wrong status: {lost_goods.data.lost_good.status}\"\n    \n        # Confirm lost good and verify inventory status (amount is zero and inventory is needed)\n        lost_goods.lost_good_confirm()\n        sku_cell_info = AvailabilityQueries().get_sku_cell_infos(\n            sku_id=wms_provider_warehouse_stock.stocks.items[0].sku,\n            cell_key=order.picking.data.no_goods_cell_keys[0],\n        )[0]\n        assert sku_cell_info.SkuCellBarcodeInfo.amount == 0\n        assert sku_cell_info.SkuCell.inventory_needed\n        assert sku_cell_info.SkuCellBarcodeInfo.inventory_needed\n    \n        # Verify order is in CANCELED status in assembly service\n>       wait_order_assembly(order_id=order.order.order_id, order_status=AssemblyOrderStatus.CANCELED)\n\ntests/wms/test_assembly/test_lost_goods.py:86: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n/usr/local/lib/python3.11/site-packages/retrying.py:55: in wrapped_f\n    return Retrying(*dargs, **dkw).call(f, *args, **kw)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/retrying.py:289: in call\n    raise attempt.get()\n          ^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/retrying.py:326: in get\n    raise exc.with_traceback(tb)\n/usr/local/lib/python3.11/site-packages/retrying.py:273: in call\n    attempt = Attempt(fn(*args, **kwargs), attempt_number, False)\n                      ^^^^^^^^^^^^^^^^^^^\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\norder_id = 4278192642, order_status = <AssemblyOrderStatus.CANCELED: 'CANCELED'>\norder_type = None, last_mile_id = None\n\n    @retry(stop_max_attempt_number=6, wait_fixed=10 * 6000)\n    def wait_order_assembly(\n        order_id: int, order_status: AssemblyOrderStatus = None, order_type: WMSOrderType = None, last_mile_id: int = None\n    ):\n        order = AssemblyQueries().get_order(order_id)\n        assert order, f\"No Order created in Assembly service with ID: {order_id}\"\n        if order_status is not None:\n>           assert order.status == order_status.name, f\"{order_id} in wrong status: {order.status}\"\nE           AssertionError: 4278192642 in wrong status: PROBLEMATIC_WAITING_CANCELING\nE           assert 'PROBLEMATIC_...ING_CANCELING' == 'CANCELED'\nE             \nE             - CANCELED\nE             + PROBLEMATIC_WAITING_CANCELING\n\nsrc/framework/wms/validation/waiters/order.py:66: AssertionError"}, "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "ef5eb9be-e5d3-45fa-910a-4838145b4f35-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "198e655c-1418-41c3-91a0-7b5dcac1f257-attachment.json", "type": "application/json"}], "start": 1775605535693, "stop": 1775605535694}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "6acee8ff-e276-42eb-bcad-aff71a9f9c25-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "d8d2512c-d450-4bfd-a073-c9c548ad45ea-attachment.json", "type": "application/json"}], "start": 1775605535702, "stop": 1775605535702}], "start": 1775605535694, "stop": 1775605535706}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "8f8c1e3a-d2d8-4b4e-9e54-49c51297b836-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "30bc1d64-681b-4330-badf-00524d80079a-attachment.json", "type": "application/json"}], "start": 1775605535717, "stop": 1775605535717}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "ef58d995-4f97-4139-8d08-1e45a682a165-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "49b89468-b1a3-4479-ba79-ffb1eff63e9d-attachment.json", "type": "application/json"}], "start": 1775605535718, "stop": 1775605535718}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "82589d3d-b7ad-49c3-b016-0060b6994b2d-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "40b64647-1b13-4ee7-af86-ae87f3f07400-attachment.json", "type": "application/json"}], "start": 1775605535719, "stop": 1775605535719}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "6e485356-ee9f-4be5-8b0e-dd63de678a2d-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "71e0f8fe-fb59-4fea-ab23-3a041901d4f2-attachment.json", "type": "application/json"}], "start": 1775605535719, "stop": 1775605535719}, {"name": "Waiter function: login_or_refresh", "status": "passed", "steps": [{"name": "POST → https://dm-wms-be-service-account.k8s-review.dailymail-tech.uz/oauth/custom/token", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4ff49283-5242-46a2-b59e-770b2d404d81-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "13bbd37f-d8ab-4f55-910c-3bd9374feecc-attachment.json", "type": "application/json"}], "start": 1775605535749, "stop": 1775605535749}, {"name": "Response → 200, trace_id: fa6a337e85f16f96d104fb97264667c8", "status": "passed", "attachments": [{"name": "response.headers", "source": "09aaa934-ab8e-4794-8d19-19b205b62d6c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "dd1bb09b-4877-4177-a363-c5a77c2920d3-attachment.json", "type": "application/json"}], "start": 1775605535749, "stop": 1775605535749}], "attachments": [{"name": "cURL", "source": "c13ea2b9-b7a8-4799-89a6-ee4181bef74d-attachment.txt", "type": "text/plain"}], "start": 1775605535749, "stop": 1775605535749}], "start": 1775605535720, "stop": 1775605535752}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "e129267f-4aa7-42d0-a571-272aae0435b5-attachment.json", "type": "application/json"}, {"name": "Response", "source": "b7fa87af-70c2-467a-bf60-39f885ffdb5f-attachment.json", "type": "application/json"}], "start": 1775605535781, "stop": 1775605535816}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775605535817, "stop": 1775605536025}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/create-wave/order", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d3ffdd6a-8d80-4c21-8263-d696931b234a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "aa60cc9f-91dd-48ed-a8c5-cb5c7a989b00-attachment.json", "type": "application/json"}], "start": 1775605537225, "stop": 1775605537289}, {"name": "Response → 200, trace_id: 987beb0b982ff28f741a465438186f8e", "status": "passed", "attachments": [{"name": "response.headers", "source": "7559b64c-bc13-4458-abd0-646a1358f5ed-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "fe52a516-4ed1-484b-85d8-5e0d5fcafd20-attachment.json", "type": "application/json"}], "start": 1775605537289, "stop": 1775605537289}], "attachments": [{"name": "cURL", "source": "da4b63d2-feb3-4a5e-87a4-a81ac79de36f-attachment.txt", "type": "text/plain"}], "start": 1775605537225, "stop": 1775605537289}, {"name": "POST → https://dm-wms-be-service-account.k8s-review.dailymail-tech.uz/api/v1/account/set-worker-location", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "023894e9-a4ec-4c18-8071-f7aae216be17-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "337a5ddf-2cb5-424c-b164-e348fa3423a2-attachment.json", "type": "application/json"}], "start": 1775605537364, "stop": 1775605537364}, {"name": "Response → 200, trace_id: 03f6904ad0bd9bbb2f7a746beab96d18", "status": "passed", "attachments": [{"name": "response.headers", "source": "67a5fba2-6113-4d67-a453-b68de2e15fd7-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "588605ae-4ff6-40d9-a69e-077b6e45035e-attachment.json", "type": "application/json"}], "start": 1775605537364, "stop": 1775605537364}], "attachments": [{"name": "cURL", "source": "ac2b11f9-e472-4118-9df1-f0e88f87f430-attachment.txt", "type": "text/plain"}], "start": 1775605537364, "stop": 1775605537364}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task-for-wave", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "07bdd898-5db8-4c53-a2f0-bfb137691886-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "2eedeb41-5a72-4001-bdf0-13b685f8ac97-attachment.json", "type": "application/json"}], "start": 1775605537412, "stop": 1775605537412}, {"name": "Response → 200, trace_id: 697cd74ac258e9228cbe67bf7a221364", "status": "passed", "attachments": [{"name": "response.headers", "source": "a186ddb9-972b-414e-ae25-538ca7752dc1-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "edc91cf5-3586-4fbc-a54a-2897a485fb2e-attachment.json", "type": "application/json"}], "start": 1775605537412, "stop": 1775605537412}], "attachments": [{"name": "cURL", "source": "b0c629e5-a9d7-4d65-9dc4-c4b8c8cc33ab-attachment.txt", "type": "text/plain"}], "start": 1775605537412, "stop": 1775605537412}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "61275710-a9a4-4e78-9c74-8507fb026e0e-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "ca093dff-b697-4bfd-ab0b-fe3b6609ec59-attachment.json", "type": "application/json"}], "start": 1775605537485, "stop": 1775605537485}, {"name": "Response → 200, trace_id: 2244fb359026e28eeedd5ea87b36e3b4", "status": "passed", "attachments": [{"name": "response.headers", "source": "187cb05b-999e-45d5-8205-23df0daca4bd-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "7d9d7337-8abf-4b02-8a24-4a4196225497-attachment.json", "type": "application/json"}], "start": 1775605537485, "stop": 1775605537485}], "attachments": [{"name": "cURL", "source": "36551179-a6d2-4c3c-a1a2-dfe090e7fa98-attachment.txt", "type": "text/plain"}], "start": 1775605537485, "stop": 1775605537485}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/{sortingType}/box/create", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e8a2c097-50a0-4d6f-8b09-93bd30758def-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "713e32e2-01c0-4b7b-936c-01caa38971d1-attachment.json", "type": "application/json"}], "start": 1775605537523, "stop": 1775605537523}, {"name": "Response → 200, trace_id: 1933215a36a1c536d043f1d564e5c42e", "status": "passed", "attachments": [{"name": "response.headers", "source": "fe6d8071-a538-4707-a5d0-c94de46d662d-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "7d7f1e77-a56f-4361-ad93-b2a37e907919-attachment.txt", "type": "text/plain"}], "start": 1775605537523, "stop": 1775605537524}], "attachments": [{"name": "cURL", "source": "1f13eaa0-1b29-482a-abb1-7ce439519b86-attachment.txt", "type": "text/plain"}], "start": 1775605537523, "stop": 1775605537524}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492949&pickingTaskKey=53a0c90d2de4a5e08729957e2ec923c7c5a28f2688d62581c88a12c45ea11af8", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "05d42865-2353-4687-bbe5-e47e2b692e40-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "26939b5e-8912-4f0a-aa5a-abe773778260-attachment.json", "type": "application/json"}], "start": 1775605537557, "stop": 1775605537558}, {"name": "Response → 200, trace_id: 7083c0f4877cbdff7746c692bbfda302", "status": "passed", "attachments": [{"name": "response.headers", "source": "1c72df15-9e12-4143-8b23-30c11134c465-attachment.json", "type": "application/json"}], "start": 1775605537558, "stop": 1775605537558}], "attachments": [{"name": "cURL", "source": "f79dab33-6680-41c7-926f-022e1b42172c-attachment.txt", "type": "text/plain"}], "start": 1775605537557, "stop": 1775605537558}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=53a0c90d2de4a5e08729957e2ec923c7c5a28f2688d62581c88a12c45ea11af8&skuId=4100000000000053454&cellBarcode=QA-75605534437868800&cellId=488512", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1d0c6175-4a48-41af-b5b8-8fc7671b6f77-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "b8cb1e5b-d95b-4b7e-953e-59e5a41a84ba-attachment.json", "type": "application/json"}], "start": 1775605547727, "stop": 1775605547727}, {"name": "Response → 200, trace_id: 6cdac6133ed6eb9707850de926740a59", "status": "passed", "attachments": [{"name": "response.headers", "source": "8fa07a09-baef-40ce-9e3f-28afb3e4192c-attachment.json", "type": "application/json"}], "start": 1775605547727, "stop": 1775605547727}], "attachments": [{"name": "cURL", "source": "80fa6b3b-21e7-457a-bcca-32b4af5ea29d-attachment.txt", "type": "text/plain"}], "start": 1775605547727, "stop": 1775605547727}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "589fb997-a9a1-4d69-8a4d-885c53746dd8-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "5a086b86-c247-4a8d-a0b3-4fd282e0b1d3-attachment.json", "type": "application/json"}], "start": 1775605547760, "stop": 1775605547760}, {"name": "Response → 200, trace_id: 01ba9cd1aefbd35700b7ed2fc9789d3c", "status": "passed", "attachments": [{"name": "response.headers", "source": "8fb4a7f3-229b-4c2a-937a-d2e60418ab8b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "cfaec170-a40b-41f1-b54e-1b08577ca178-attachment.json", "type": "application/json"}], "start": 1775605547760, "stop": 1775605547761}], "attachments": [{"name": "cURL", "source": "7f7391fb-2355-4f95-b2b4-7d2b1c7801ee-attachment.txt", "type": "text/plain"}], "start": 1775605547760, "stop": 1775605547761}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "b7cfcc87-01de-48c3-97f9-f6bc4df17875-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "413582b0-dc70-4025-9288-e0821d682664-attachment.json", "type": "application/json"}], "start": 1775605547774, "stop": 1775605547774}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "1f79af64-3cf4-4ac4-a05e-6b0ce9d79bc9-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "67cb7bab-b5e7-4839-9831-6bce1659af6d-attachment.json", "type": "application/json"}], "start": 1775605547810, "stop": 1775605547811}, {"name": "POST → https://dm-wms-be-service-availability.k8s-review.dailymail-tech.uz/lost-goods/confirm?id=88891", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5b411ac8-f8bf-4145-b6ef-9dc7a6e42588-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "68cc5b4a-e8df-4109-86ad-b49b108e1fb0-attachment.json", "type": "application/json"}], "start": 1775605547835, "stop": 1775605547835}, {"name": "Response → 200, trace_id: e4cd01fc394df0adbef918860ba36a44", "status": "passed", "attachments": [{"name": "response.headers", "source": "a0c8c0f9-b410-4f49-a9ff-2981618615bd-attachment.json", "type": "application/json"}], "start": 1775605547835, "stop": 1775605547835}], "attachments": [{"name": "cURL", "source": "7771f2de-f6dc-4b6a-b553-c9a2ec6324d7-attachment.txt", "type": "text/plain"}], "start": 1775605547835, "stop": 1775605547835}, {"name": "Waiter function: wait_lost_good", "status": "passed", "start": 1775605547839, "stop": 1775605547841}], "attachments": [{"name": "log", "source": "7e1d8c98-cdf7-433f-aed9-92cde189f2af-attachment.txt", "type": "text/plain"}], "parameters": [{"name": "wms_providers", "value": "{'provider': WMSProvider(last_mile='YaMarket', city_id=<DeliveryCityId.ALIEXPRESS_UZ: 11>, delivery_point_id=<DeliveryPointId.ALIEXPRESS_UZ: 12>, last_mile_id=<DeliveryLastMileId.ALIEXPRESS_UZ: 12>, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, assembly_group_id=<AssemblyGroupId.ALIEXPRESS_UZ: 12>, order_source=<OrderSource.YaMarket: 'YaMarket'>, provider_name='YaMarket'), 'warehouse': WMSWarehouse(id=1693627, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, ff_id='WH_TASHKENT', hub_last_mile_id=0, providers=[WMSProvider(last_mile='YaMarket', city_id=<DeliveryCityId.ALIEXPRESS_UZ: 11>, delivery_point_id=<DeliveryPointId.ALIEXPRESS_UZ: 12>, last_mile_id=<DeliveryLastMileId.ALIEXPRESS_UZ: 12>, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, assembly_group_id=<AssemblyGroupId.ALIEXPRESS_UZ: 12>, order_source=<OrderSource.YaMarket: 'YaMarket'>, provider_name='YaMarket')], name='Uzbekistan', description='Бонд Узбекистан', use_datamatrix=False, user=WMSAccount(wms_id=33349, phone='3335000010', role_wms_id=23, zone_id=None, patronymic=None, last_name='', password='1234', first_name='', token='', refresh_token=''), storage_cell=<StorageCells.MA1_1_1_01: 'MA1-1-1-01'>, defected_cell=<DefectedCells.BR_01_01_1_05: 'BR-01-01-1-05'>, overage_cell=<OverageCells.IZ_1_01_01_1_05: 'IZ-1-01-01-1-05'>, weighing_cell=<WeighingCells.WT_1_11_1: 'WT-1-01-1'>, packing_table=<PackingTable.UP_AUTOTEST_01: 'UP-AUTOTEST-01'>, packing_zone_id='', qa_zone=<WMSZoneIds.QA_UZ_ZONE: 31>, email=None, phone=None)}"}], "start": 1775605535670, "stop": 1775605847855, "uuid": "59f46e16-47f5-46ff-b3be-72e7e14cf5d7", "historyId": "bce535724f18cb9982c1adcb7264bfbb", "testCaseId": "efe93f13663df41b69ffceaacf67506b", "fullName": "tests.wms.test_assembly.test_lost_goods.TestLostGoods#test_no_goods_confirm_zero_picking", "labels": [{"name": "feature", "value": "Lost goods"}, {"name": "tag", "value": "dm-wms-be-service-assembly"}, {"name": "tag", "value": "wms-flow-lost-goods"}, {"name": "parentSuite", "value": "tests.wms.test_assembly"}, {"name": "suite", "value": "test_lost_goods"}, {"name": "subSuite", "value": "TestLostGoods"}, {"name": "host", "value": "runner-1rdl4o-mi-project-9-concurrent-3-89wqs7t9"}, {"name": "thread", "value": "22-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "tests.wms.test_assembly.test_lost_goods"}], "titlePath": ["tests", "wms", "test_assembly", "test_lost_goods.py", "TestLostGoods"]}