{"name": "test_no_goods_confirm_zero_picking[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: 4278192757 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 0x773ccbbaeb90>\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 0x773cc954d6d0>)\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 = 4278192757, 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: 4278192757 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": "b825e417-c3d5-4b10-9ca8-a5b2d5b12545-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "1e8fa894-b62b-4888-a821-a672e9dff145-attachment.json", "type": "application/json"}], "start": 1775778289571, "stop": 1775778289572}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "9a9ce4f7-dd1c-4227-a056-c1323d286bc0-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "9d530458-e922-4ca9-94da-3ccdbcbc1986-attachment.json", "type": "application/json"}], "start": 1775778289581, "stop": 1775778289637}], "start": 1775778289572, "stop": 1775778289642}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "7183f728-36ae-41fd-80a2-b3494139666f-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "31db81f7-1a0a-41bc-8db7-4ac649673314-attachment.json", "type": "application/json"}], "start": 1775778289656, "stop": 1775778289656}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "a7c18890-dfce-4647-a99d-0e706b72cedd-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "ba1f9e86-fbb9-4655-a6ec-d3c18e4f6dae-attachment.json", "type": "application/json"}], "start": 1775778289657, "stop": 1775778289657}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "2d5a3637-f402-47bd-8a50-0f7088847512-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "477cec9a-9b9a-40e1-b23d-0aab7ed7b5ea-attachment.json", "type": "application/json"}], "start": 1775778289658, "stop": 1775778289658}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "7864768c-1cbb-4bb9-a71b-f82ec901479c-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "b41102ea-ac87-4890-bc6b-20a79c37e593-attachment.json", "type": "application/json"}], "start": 1775778289659, "stop": 1775778289659}, {"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": "f71bbba3-cb12-4e19-bcee-d5c166bfd2b2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "2687f958-3dad-4e0b-ac53-2ef7115a0c29-attachment.json", "type": "application/json"}], "start": 1775778289693, "stop": 1775778289730}, {"name": "Response → 200, trace_id: eaf9d7446bd5cc6493f203302f36deb1", "status": "passed", "attachments": [{"name": "response.headers", "source": "16c16cb2-8279-4c80-8856-f7fbd737565c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "080a531a-8934-4af0-ad62-56bb8d9262a1-attachment.json", "type": "application/json"}], "start": 1775778289730, "stop": 1775778289730}], "attachments": [{"name": "cURL", "source": "d1c3f2bf-0761-477a-913e-3422d4f6eb66-attachment.txt", "type": "text/plain"}], "start": 1775778289693, "stop": 1775778289731}], "start": 1775778289660, "stop": 1775778289734}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "64b3ef15-4b77-4c20-878c-99efa20a4655-attachment.json", "type": "application/json"}, {"name": "Response", "source": "64c86c30-acbe-4230-b745-a140580ac47a-attachment.json", "type": "application/json"}], "start": 1775778289762, "stop": 1775778289913}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775778289914, "stop": 1775778290126}, {"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": "8ba15cb8-cf5b-44ca-9e5e-c4bb75d2654b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "231dee73-c2cb-4371-9595-692919b5ec73-attachment.json", "type": "application/json"}], "start": 1775778293529, "stop": 1775778293529}, {"name": "Response → 200, trace_id: 19e55709d407fa2382e9e0e48c0861dc", "status": "passed", "attachments": [{"name": "response.headers", "source": "cfc10b42-920d-4c22-9e2b-b2167e14e334-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a22b28a0-7f22-4b09-b419-2eaa79b13178-attachment.json", "type": "application/json"}], "start": 1775778293529, "stop": 1775778293529}], "attachments": [{"name": "cURL", "source": "cc7e18fd-8116-4c54-8b67-07ef65129720-attachment.txt", "type": "text/plain"}], "start": 1775778293529, "stop": 1775778293529}, {"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": "bed8c006-7a05-4f06-bf7d-fd1ef2c09593-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4b58f557-d6ec-4ad7-9be3-0a5b7500d861-attachment.json", "type": "application/json"}], "start": 1775778293577, "stop": 1775778293577}, {"name": "Response → 200, trace_id: 8180ca6af0b575afce1176a2eafd5f4c", "status": "passed", "attachments": [{"name": "response.headers", "source": "f755d37a-b834-4311-abec-2eb642d91b8a-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ae743dc0-fe21-4be1-b1af-9f112d201179-attachment.json", "type": "application/json"}], "start": 1775778293577, "stop": 1775778293577}], "attachments": [{"name": "cURL", "source": "1aa905c2-93fc-43c2-8932-a3d173e2e1dc-attachment.txt", "type": "text/plain"}], "start": 1775778293576, "stop": 1775778293577}, {"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": "ca6eb605-7e01-4be8-9722-32aa4f6475dc-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d6b14a4e-0b47-463f-9423-649e4b0861de-attachment.json", "type": "application/json"}], "start": 1775778293627, "stop": 1775778293627}, {"name": "Response → 200, trace_id: bec042e0a324817d5afbcbd223130b43", "status": "passed", "attachments": [{"name": "response.headers", "source": "ddafc12c-4438-444b-91b6-beed87d25dda-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e3e2d907-4a92-4e44-95c7-9fe50b919365-attachment.json", "type": "application/json"}], "start": 1775778293627, "stop": 1775778293628}], "attachments": [{"name": "cURL", "source": "9a8510f4-0aed-4242-a309-99a46365e3c0-attachment.txt", "type": "text/plain"}], "start": 1775778293627, "stop": 1775778293628}, {"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": "e42aca58-8b52-4419-8f2b-f7e30636d334-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "4ce779b0-c026-4b05-93a6-bd542e418a37-attachment.json", "type": "application/json"}], "start": 1775778293680, "stop": 1775778293728}, {"name": "Response → 200, trace_id: 0124c9b1c0f280ae3994ea4203cb77e4", "status": "passed", "attachments": [{"name": "response.headers", "source": "e1c1b96a-8024-4bb0-8d55-856589d1bacc-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "5d550b05-f22e-414d-b089-264dbc81ff79-attachment.json", "type": "application/json"}], "start": 1775778293728, "stop": 1775778293729}], "attachments": [{"name": "cURL", "source": "c7141018-837a-4ec9-b5ec-a09cf942aba7-attachment.txt", "type": "text/plain"}], "start": 1775778293680, "stop": 1775778293729}, {"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": "04adb3f7-7486-40b8-a6e4-e8dc6f335d88-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f487e6af-70b8-4294-bdf6-827f3bb725d9-attachment.json", "type": "application/json"}], "start": 1775778293765, "stop": 1775778293817}, {"name": "Response → 200, trace_id: 71e5d5ee622461073fbb69fdc5734e7e", "status": "passed", "attachments": [{"name": "response.headers", "source": "805a433e-96e4-4b03-8cbc-f97f7ff56beb-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "be8b982e-68ec-4f98-a324-b8d98d03668f-attachment.txt", "type": "text/plain"}], "start": 1775778293817, "stop": 1775778293817}], "attachments": [{"name": "cURL", "source": "9e47d2a5-5c3a-4395-870a-7cb94801e973-attachment.txt", "type": "text/plain"}], "start": 1775778293765, "stop": 1775778293817}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000493030&pickingTaskKey=2c5684abf7e64c668f49d1ebcdf019179fabe36471aa83a8e617a6cec9542e08", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "3a56217d-c7e0-4345-bb58-47c97836d834-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "c53652f3-555e-4a2a-8bde-2aa89c1ac394-attachment.json", "type": "application/json"}], "start": 1775778293853, "stop": 1775778293900}, {"name": "Response → 200, trace_id: f94eab61728f8953d21cd4479508f183", "status": "passed", "attachments": [{"name": "response.headers", "source": "be5960e2-74dc-4567-af07-7597a3134712-attachment.json", "type": "application/json"}], "start": 1775778293900, "stop": 1775778293901}], "attachments": [{"name": "cURL", "source": "30a1cfac-e768-4287-bf37-b8f518da0aac-attachment.txt", "type": "text/plain"}], "start": 1775778293853, "stop": 1775778293901}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=2c5684abf7e64c668f49d1ebcdf019179fabe36471aa83a8e617a6cec9542e08&skuId=4100000000000053773&cellBarcode=QA-75778288053081344&cellId=488732", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c85d98a2-8590-4e5e-8ed1-be82ff2a0854-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "6c714bb6-eeed-47b5-a5c3-5e1811d3b677-attachment.json", "type": "application/json"}], "start": 1775778304068, "stop": 1775778304068}, {"name": "Response → 200, trace_id: 257e9811207d693d1da1de41311e02be", "status": "passed", "attachments": [{"name": "response.headers", "source": "96cc7343-1611-49df-aea3-166648ad5f74-attachment.json", "type": "application/json"}], "start": 1775778304068, "stop": 1775778304069}], "attachments": [{"name": "cURL", "source": "325c0c68-5d35-4ec1-a537-f54375cc79a5-attachment.txt", "type": "text/plain"}], "start": 1775778304068, "stop": 1775778304069}, {"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": "451d6356-e9a5-401b-9d14-ada439bce22a-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "f75567a4-8292-4fcf-8e83-5884e9566d9c-attachment.json", "type": "application/json"}], "start": 1775778304103, "stop": 1775778304103}, {"name": "Response → 200, trace_id: ec66cac34d772a856aa8a53285bf219e", "status": "passed", "attachments": [{"name": "response.headers", "source": "3f45be54-eee8-4b0f-a092-c5aa8af81ed7-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c7b2fe12-5563-41e1-ae9a-abe3206759eb-attachment.json", "type": "application/json"}], "start": 1775778304103, "stop": 1775778304103}], "attachments": [{"name": "cURL", "source": "08cc7e6e-6cfe-4b9b-a1b0-40e3282c3c43-attachment.txt", "type": "text/plain"}], "start": 1775778304103, "stop": 1775778304103}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "9ac36e4e-4c1b-4755-993d-004aa16b4518-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "1975409b-fade-4ecb-8dec-6a10a2364808-attachment.json", "type": "application/json"}], "start": 1775778304120, "stop": 1775778304120}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "2b5f2256-83f8-4347-995f-9a997992b7a3-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "2002f310-f62a-4409-93a4-cdb407163bea-attachment.json", "type": "application/json"}], "start": 1775778304155, "stop": 1775778304156}, {"name": "POST → https://dm-wms-be-service-availability.k8s-review.dailymail-tech.uz/lost-goods/confirm?id=88903", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "bdd30bc6-6d14-4b77-b9c5-267be59f3acb-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "d8e28b0f-0ee0-4814-829b-6b620415c630-attachment.json", "type": "application/json"}], "start": 1775778304179, "stop": 1775778304179}, {"name": "Response → 200, trace_id: af10566f79a1350f595c519562f78853", "status": "passed", "attachments": [{"name": "response.headers", "source": "1bdec75c-bd4c-44f9-88ad-bc9c60b975fa-attachment.json", "type": "application/json"}], "start": 1775778304179, "stop": 1775778304179}], "attachments": [{"name": "cURL", "source": "5b91792d-c2f4-407f-a83e-83cbadcab9d5-attachment.txt", "type": "text/plain"}], "start": 1775778304179, "stop": 1775778304179}, {"name": "Waiter function: wait_lost_good", "status": "passed", "start": 1775778304181, "stop": 1775778304184}], "attachments": [{"name": "log", "source": "d6515845-9fe9-43a7-938f-4f4ea31ed6d0-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": 1775778289543, "stop": 1775778604197, "uuid": "5c3c195f-2e0f-4b1c-83c6-d2cabfb66f1f", "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-mjcpr43w"}, {"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"]}