{"name": "test_no_goods_confirm_zero_picking[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: 4278192489 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 0x77447cb58d90>\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 0x77447c113d10>)\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 = 4278192489, 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: 4278192489 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": "f53a129f-d763-4d93-ad3a-7a3e4f2eb67c-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "3be7974c-6483-4731-8dd4-a62e7cf3f74e-attachment.json", "type": "application/json"}], "start": 1775411408559, "stop": 1775411408559}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "c6cee36e-9a69-4ef5-80de-64354067467b-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "7d2bd4dd-2045-40b1-9c66-6a0a57702656-attachment.json", "type": "application/json"}], "start": 1775411408567, "stop": 1775411408568}], "start": 1775411408559, "stop": 1775411408571}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "d4e2ed04-23ff-4227-b8b3-db2482ae595e-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "118d35cd-2c4b-45d4-9a5c-ad16fde803bd-attachment.json", "type": "application/json"}], "start": 1775411408583, "stop": 1775411408583}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "26221d98-5433-4602-bab7-337c40c59f5b-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "2f556e5c-857f-4e0d-935d-09a150a55981-attachment.json", "type": "application/json"}], "start": 1775411408583, "stop": 1775411408584}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "14479894-4180-46b1-8158-378098527d01-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "3b7378b0-6b46-42ef-8e89-760178d91d04-attachment.json", "type": "application/json"}], "start": 1775411408584, "stop": 1775411408584}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "58d19f74-2740-47b9-940a-def0eb67d3d2-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "cc7eda65-9b01-4f84-aba3-efc6ea6c03c9-attachment.json", "type": "application/json"}], "start": 1775411408585, "stop": 1775411408585}, {"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": "f0c05c43-9746-4447-9df4-7828f06dc4d0-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "81fdb284-e0ec-43c3-8f40-ba1cbff51468-attachment.json", "type": "application/json"}], "start": 1775411408618, "stop": 1775411408619}, {"name": "Response → 200, trace_id: 90eabb2bee602e06d14fcab1a031abcc", "status": "passed", "attachments": [{"name": "response.headers", "source": "9042f1c4-9dac-4728-9992-41f3509efa52-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "5fb0bebb-7545-4b38-964e-df2961dca8fb-attachment.json", "type": "application/json"}], "start": 1775411408619, "stop": 1775411408619}], "attachments": [{"name": "cURL", "source": "259a34b6-652c-4e83-92d6-0849b7746c36-attachment.txt", "type": "text/plain"}], "start": 1775411408618, "stop": 1775411408619}], "start": 1775411408586, "stop": 1775411408622}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "7432fd1c-fd9a-4322-aaa6-92655db5b21c-attachment.json", "type": "application/json"}, {"name": "Response", "source": "29169e13-1735-4046-8904-e4a3904afaa0-attachment.json", "type": "application/json"}], "start": 1775411408651, "stop": 1775411408684}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775411408685, "stop": 1775411411077}, {"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": "ddfbc1a3-1ec4-40fb-b753-225f57a37ec7-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "7b7d734b-a453-4dcc-bca2-294a0b290683-attachment.json", "type": "application/json"}], "start": 1775411412468, "stop": 1775411412468}, {"name": "Response → 200, trace_id: 56a277af5af0a169261e31c0cd659c4a", "status": "passed", "attachments": [{"name": "response.headers", "source": "a668585b-a809-422d-8f78-8d96fa8c58c9-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "d84f4f5d-485f-410b-864b-a034b5b93aea-attachment.json", "type": "application/json"}], "start": 1775411412468, "stop": 1775411412468}], "attachments": [{"name": "cURL", "source": "fc29399e-adde-481e-9cd0-72d62d8a18a1-attachment.txt", "type": "text/plain"}], "start": 1775411412468, "stop": 1775411412468}, {"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": "34b2216e-c0c2-4c2d-a117-5b61c72f7907-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e1606681-7c20-441b-83ca-e798abe40586-attachment.json", "type": "application/json"}], "start": 1775411412524, "stop": 1775411412525}, {"name": "Response → 200, trace_id: dee405ff9d0fd6668048bc08e65c2221", "status": "passed", "attachments": [{"name": "response.headers", "source": "a7d8d4f7-0f67-4de1-a4c5-24073ac0e275-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e3e8fa95-2e74-45fc-887a-cac1d52fb95f-attachment.json", "type": "application/json"}], "start": 1775411412525, "stop": 1775411412525}], "attachments": [{"name": "cURL", "source": "ab449cdb-afb5-432a-b3ce-af6e7ad04589-attachment.txt", "type": "text/plain"}], "start": 1775411412524, "stop": 1775411412525}, {"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": "3f141c91-c10d-442b-aede-138ee1766a9f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "13c40b9e-4025-4692-b478-a9fe21d6f149-attachment.json", "type": "application/json"}], "start": 1775411412570, "stop": 1775411412570}, {"name": "Response → 200, trace_id: 1ef8cc3996991da8ea4e5b557b89f514", "status": "passed", "attachments": [{"name": "response.headers", "source": "713a1bf8-c537-4e51-a7f6-43b80761ed8b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "1315ef0c-4d28-4f23-8549-23471cbb93b2-attachment.json", "type": "application/json"}], "start": 1775411412570, "stop": 1775411412570}], "attachments": [{"name": "cURL", "source": "193dfac9-18ea-4d9d-961a-08552fc89c5a-attachment.txt", "type": "text/plain"}], "start": 1775411412570, "stop": 1775411412570}, {"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": "3de2bc91-b991-4f67-a645-2f408a25e8b4-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "62211ce6-0352-4049-860a-6cb69a971dc2-attachment.json", "type": "application/json"}], "start": 1775411412610, "stop": 1775411412611}, {"name": "Response → 200, trace_id: 16b1fa94663a00766923ce5543525cb3", "status": "passed", "attachments": [{"name": "response.headers", "source": "3b00bb6f-c7ae-4e25-802a-416e67609c00-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "372d2d16-1a91-43a4-9fe0-dc20216fb527-attachment.json", "type": "application/json"}], "start": 1775411412611, "stop": 1775411412611}], "attachments": [{"name": "cURL", "source": "39dbd814-8dcd-40da-9c33-bf7c52793515-attachment.txt", "type": "text/plain"}], "start": 1775411412610, "stop": 1775411412611}, {"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": "63077963-300d-4cf5-92e6-18d43429b74c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d456e3d6-b37b-4127-944b-1c015c09c1b1-attachment.json", "type": "application/json"}], "start": 1775411412639, "stop": 1775411412639}, {"name": "Response → 200, trace_id: 479f0c9c7703ea4263aae15d377e3d1b", "status": "passed", "attachments": [{"name": "response.headers", "source": "bd119ae6-c8a5-4fec-b9a2-fc477f15d661-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "20e31563-e0ae-48cb-a442-c24753007fe0-attachment.txt", "type": "text/plain"}], "start": 1775411412639, "stop": 1775411412639}], "attachments": [{"name": "cURL", "source": "a12aab0e-aff9-4cb9-acff-fcdfb80f3609-attachment.txt", "type": "text/plain"}], "start": 1775411412639, "stop": 1775411412639}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492835&pickingTaskKey=a74b783c139ad561778f22b1c6ca71d4d4f85dedf22c9338e58c321baa288b2b", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1d85d35f-4196-463f-a167-05f1cea153ee-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "bddded5a-d3fe-44be-a742-deaed047fec2-attachment.json", "type": "application/json"}], "start": 1775411412668, "stop": 1775411412668}, {"name": "Response → 200, trace_id: 4796bd1df6cf32a40f36cfe156b7ac27", "status": "passed", "attachments": [{"name": "response.headers", "source": "53237d0d-240b-46ca-b8ac-35235e1720d1-attachment.json", "type": "application/json"}], "start": 1775411412668, "stop": 1775411412669}], "attachments": [{"name": "cURL", "source": "92a90a35-913a-4043-8003-d3483f0d2aab-attachment.txt", "type": "text/plain"}], "start": 1775411412668, "stop": 1775411412669}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=a74b783c139ad561778f22b1c6ca71d4d4f85dedf22c9338e58c321baa288b2b&skuId=4100000000000053026&cellBarcode=QA-75411407192545024&cellId=488218", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ac1ccaa2-a771-482d-9313-b3a191a9cf23-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "d1aada70-1c64-4be5-aa4d-cce0694f64d4-attachment.json", "type": "application/json"}], "start": 1775411422825, "stop": 1775411422825}, {"name": "Response → 200, trace_id: 2d04e8171a0cc69308d6f2d9a1197c9d", "status": "passed", "attachments": [{"name": "response.headers", "source": "7c541fd2-8844-4f27-afcb-ae20fc8b3353-attachment.json", "type": "application/json"}], "start": 1775411422825, "stop": 1775411422825}], "attachments": [{"name": "cURL", "source": "b91bd016-fb8d-407b-b897-c24dd9c90946-attachment.txt", "type": "text/plain"}], "start": 1775411422825, "stop": 1775411422825}, {"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": "d2aaccad-1e91-42f7-b9b1-7c21fb91f2bb-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "e2f11b6c-4b41-4d0b-a681-6a736f213804-attachment.json", "type": "application/json"}], "start": 1775411422859, "stop": 1775411422859}, {"name": "Response → 200, trace_id: ffcb1955e5f05436ab8dbd45ddc694b0", "status": "passed", "attachments": [{"name": "response.headers", "source": "0a98f686-55b4-4be4-b6cb-61f7ee4c23b4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "bb32c5b2-93fa-4f98-81b4-d1f79c005548-attachment.json", "type": "application/json"}], "start": 1775411422859, "stop": 1775411422859}], "attachments": [{"name": "cURL", "source": "3c59d05c-74ad-44f7-be49-3dd347810b99-attachment.txt", "type": "text/plain"}], "start": 1775411422859, "stop": 1775411422859}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "b66b9c6f-53b9-4ae0-b115-b3caefcf9b66-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "0143c19e-3b74-470f-bd2a-0923fe2bbbe2-attachment.json", "type": "application/json"}], "start": 1775411422878, "stop": 1775411422879}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "0acfcf29-f563-4ded-93ed-b58f214e5c08-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "a96e9517-95e8-4bf7-9046-fe712114c13f-attachment.json", "type": "application/json"}], "start": 1775411422896, "stop": 1775411422896}, {"name": "POST → https://dm-wms-be-service-availability.k8s-review.dailymail-tech.uz/lost-goods/confirm?id=88875", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8bde6508-3438-4cc2-a1c0-74d771ad2596-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "1d55d8b4-f4e6-417d-a821-c772f34dd0a7-attachment.json", "type": "application/json"}], "start": 1775411422918, "stop": 1775411422918}, {"name": "Response → 200, trace_id: 53842a444ed185082d6cb68125240029", "status": "passed", "attachments": [{"name": "response.headers", "source": "ad1e2591-73d9-49a1-8deb-f7a5889c3c30-attachment.json", "type": "application/json"}], "start": 1775411422918, "stop": 1775411422919}], "attachments": [{"name": "cURL", "source": "c6f85636-0bab-404b-a902-a2311cc76f2c-attachment.txt", "type": "text/plain"}], "start": 1775411422918, "stop": 1775411422919}, {"name": "Waiter function: wait_lost_good", "status": "passed", "start": 1775411422921, "stop": 1775411422923}], "attachments": [{"name": "log", "source": "553ec810-f2d6-4db0-92b3-cf47890795ce-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": 1775411408537, "stop": 1775411722937, "uuid": "5a7582b3-acc6-4771-875d-d0c553187700", "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-c71r5aee"}, {"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"]}