{"name": "test_no_goods_confirm_zero_picking[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: 4278192571 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 0x748080661150>\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 0x74807b3d5e10>)\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 = 4278192571, 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: 4278192571 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": "ee51e5a7-00bb-4b63-8cd0-50aec95fbc93-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "b9de713b-8536-4bfc-a506-3810b4324114-attachment.json", "type": "application/json"}], "start": 1775460558679, "stop": 1775460558679}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "0152c6f0-8b76-406f-af89-a37090fe681f-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "99efe223-1aea-4d2f-92ef-aabb4fdb8277-attachment.json", "type": "application/json"}], "start": 1775460558687, "stop": 1775460558688}], "start": 1775460558679, "stop": 1775460558691}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "bb1ca280-d3b9-464c-86e6-7abb17efd7b4-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "0c30fab1-991e-4290-b44a-5c459c5bb044-attachment.json", "type": "application/json"}], "start": 1775460558701, "stop": 1775460558702}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "bba5939f-0d9a-48ec-a741-2f37e1a828ce-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "483ea3ab-9905-437a-940c-f41abbadc9b3-attachment.json", "type": "application/json"}], "start": 1775460558702, "stop": 1775460558702}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "8722256f-8530-481f-bdec-ae047fab7124-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "e5a59b33-8d78-4602-b7f4-63ff0756e258-attachment.json", "type": "application/json"}], "start": 1775460558703, "stop": 1775460558703}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "5182cdaf-005d-483d-81c0-41463dbdb657-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "1f8cab4d-4735-4558-9e47-726a53b542c1-attachment.json", "type": "application/json"}], "start": 1775460558703, "stop": 1775460558704}, {"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": "149b7a99-cf7e-4b4e-9d9a-e705efa63828-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "0cd58a8c-062e-4a4b-9b65-b7572010acb2-attachment.json", "type": "application/json"}], "start": 1775460558734, "stop": 1775460558734}, {"name": "Response → 200, trace_id: 49e638446ac6a6eb560667599516e0f3", "status": "passed", "attachments": [{"name": "response.headers", "source": "a1682b5d-7364-40e6-813e-3a908a378bbf-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a71645b1-c5b7-4e07-8379-52d8b27a57c2-attachment.json", "type": "application/json"}], "start": 1775460558734, "stop": 1775460558734}], "attachments": [{"name": "cURL", "source": "759a5f4a-7f3a-44ee-b6f0-b68f3a44247e-attachment.txt", "type": "text/plain"}], "start": 1775460558734, "stop": 1775460558734}], "start": 1775460558704, "stop": 1775460558738}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "368d42d7-aa63-4f92-8888-1d7db5bd4e10-attachment.json", "type": "application/json"}, {"name": "Response", "source": "e00d433c-39d7-4084-9815-0a0bec714532-attachment.json", "type": "application/json"}], "start": 1775460558767, "stop": 1775460558796}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775460558797, "stop": 1775460561162}, {"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": "9b0d1f3b-7f28-4b86-86e8-ab649929c4e1-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "cb7228fa-904d-45e4-b4dd-da5cc6ca81be-attachment.json", "type": "application/json"}], "start": 1775460562286, "stop": 1775460562287}, {"name": "Response → 200, trace_id: eab15185f8eb1d6130d33e20a65ffa26", "status": "passed", "attachments": [{"name": "response.headers", "source": "ad4c8c92-b98f-45aa-a22f-9b34ab2afd45-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "6043ead5-d864-4f3f-95e4-dcd2d92ab296-attachment.json", "type": "application/json"}], "start": 1775460562287, "stop": 1775460562287}], "attachments": [{"name": "cURL", "source": "3220df50-2265-4fe1-b1d9-f0868c968ef2-attachment.txt", "type": "text/plain"}], "start": 1775460562286, "stop": 1775460562287}, {"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": "2a0bda98-1794-401d-ad17-428406886531-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "90a6c170-7f8d-46f3-abf7-26abdd940e57-attachment.json", "type": "application/json"}], "start": 1775460562333, "stop": 1775460562333}, {"name": "Response → 200, trace_id: 8a4a48ffc1f4a6915d00cc1f09cb4166", "status": "passed", "attachments": [{"name": "response.headers", "source": "6815d9f4-ca34-4366-8919-aed86d7e4e51-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "5262b6fa-98b4-4507-9f1c-f0f74e3e8602-attachment.json", "type": "application/json"}], "start": 1775460562333, "stop": 1775460562333}], "attachments": [{"name": "cURL", "source": "66044323-e88e-4c7e-b7c7-376b623ea757-attachment.txt", "type": "text/plain"}], "start": 1775460562333, "stop": 1775460562333}, {"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": "bc2c85e1-667c-4557-8881-dd9ffb795388-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "ba3287b8-3b34-47ad-a576-942ab359657b-attachment.json", "type": "application/json"}], "start": 1775460562381, "stop": 1775460562381}, {"name": "Response → 200, trace_id: acf48a21177ae1ef137d14344138c264", "status": "passed", "attachments": [{"name": "response.headers", "source": "d340ed77-224f-4066-8d73-3a5e3337ecbe-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "39585861-b7d9-4999-91f5-1385d502ca7b-attachment.json", "type": "application/json"}], "start": 1775460562381, "stop": 1775460562381}], "attachments": [{"name": "cURL", "source": "1ee3296b-fd3d-4855-8cb6-b0f9b79f9287-attachment.txt", "type": "text/plain"}], "start": 1775460562381, "stop": 1775460562381}, {"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": "e231bc09-d377-4f89-9bdc-8496a21a7005-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "002c5458-0d7a-4c9d-8f76-ba19d6af0fe1-attachment.json", "type": "application/json"}], "start": 1775460562423, "stop": 1775460562423}, {"name": "Response → 200, trace_id: 624adb59cfbed0d7d28dfe3021b2d336", "status": "passed", "attachments": [{"name": "response.headers", "source": "68996ff7-3513-457b-b0a6-530ce499489a-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "4c726a82-8480-4a2c-94f3-f99141cd41ad-attachment.json", "type": "application/json"}], "start": 1775460562423, "stop": 1775460562423}], "attachments": [{"name": "cURL", "source": "7e575682-4cdc-4dd1-9ecf-951d687d554f-attachment.txt", "type": "text/plain"}], "start": 1775460562423, "stop": 1775460562423}, {"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": "28c5f3a4-c9af-493d-8124-7b1208f5e46d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "1e4667d8-3c58-44d4-b073-42b141d1d0f1-attachment.json", "type": "application/json"}], "start": 1775460562450, "stop": 1775460562450}, {"name": "Response → 200, trace_id: 69bd68985558dc1cf2fc013dd4e08b77", "status": "passed", "attachments": [{"name": "response.headers", "source": "f5595da5-b9bc-417c-ad83-5ded8909eb9b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9a341ac3-5146-44ba-b179-a8ed5cf7e630-attachment.txt", "type": "text/plain"}], "start": 1775460562450, "stop": 1775460562450}], "attachments": [{"name": "cURL", "source": "3caf8c67-224d-46c9-a527-9d413931ab3e-attachment.txt", "type": "text/plain"}], "start": 1775460562450, "stop": 1775460562450}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492903&pickingTaskKey=21effbcb9df45a26d5d6ede306c3fffe9b70939d9c4f63ad0023bfc73ad76847", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "3fd0c54a-ed67-430f-ad81-58defd42a8c3-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "bd52df50-9f04-46a1-b92f-d273ac6dc2f6-attachment.json", "type": "application/json"}], "start": 1775460562479, "stop": 1775460562479}, {"name": "Response → 200, trace_id: 461db502d9ed1dfa2fb6d91d2c2a68cb", "status": "passed", "attachments": [{"name": "response.headers", "source": "ec2d26f8-00ad-4949-be51-9f642ce3eb8a-attachment.json", "type": "application/json"}], "start": 1775460562479, "stop": 1775460562480}], "attachments": [{"name": "cURL", "source": "5bb99948-998e-4ef5-91c4-700244ebbfcf-attachment.txt", "type": "text/plain"}], "start": 1775460562479, "stop": 1775460562480}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=21effbcb9df45a26d5d6ede306c3fffe9b70939d9c4f63ad0023bfc73ad76847&skuId=4100000000000053233&cellBarcode=QA-75460557317307648&cellId=488373", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ac49e793-16dc-478c-abb2-29edfa42337e-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "06e7536c-8ebf-4c43-b702-3971d1aa68c7-attachment.json", "type": "application/json"}], "start": 1775460572636, "stop": 1775460572637}, {"name": "Response → 200, trace_id: 01f7c61e948d1500fd1a7dcb04ec4274", "status": "passed", "attachments": [{"name": "response.headers", "source": "139969b3-0922-4902-805d-ad37bd211188-attachment.json", "type": "application/json"}], "start": 1775460572637, "stop": 1775460572637}], "attachments": [{"name": "cURL", "source": "ca68b690-d6a2-4231-8e75-b07a70d8ae17-attachment.txt", "type": "text/plain"}], "start": 1775460572636, "stop": 1775460572637}, {"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": "e9ec61a9-c62a-40ab-8559-14152fc08a95-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "e6a9a7d5-b261-4689-aed2-ea36ba000893-attachment.json", "type": "application/json"}], "start": 1775460572672, "stop": 1775460572672}, {"name": "Response → 200, trace_id: edbd0360c2a0b75a378f23a2e499df8c", "status": "passed", "attachments": [{"name": "response.headers", "source": "725d55cf-bb6d-4f70-94bb-14628ead69f5-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "d03950ba-f474-4d27-83f1-c7aeb07dbadd-attachment.json", "type": "application/json"}], "start": 1775460572672, "stop": 1775460572672}], "attachments": [{"name": "cURL", "source": "45d426e1-f487-4573-943f-21ae6e4b6509-attachment.txt", "type": "text/plain"}], "start": 1775460572672, "stop": 1775460572672}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "90075217-476f-47c4-85e7-2f0997f38f70-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "eae98f03-8e66-4821-b5e8-fdf1679ce5bd-attachment.json", "type": "application/json"}], "start": 1775460572690, "stop": 1775460572690}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "e694b97b-0806-41b2-9fe0-99aa13e06bf1-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "42e0eeae-5cf5-44e8-af4b-5b24d9e83e8b-attachment.json", "type": "application/json"}], "start": 1775460572724, "stop": 1775460572725}, {"name": "POST → https://dm-wms-be-service-availability.k8s-review.dailymail-tech.uz/lost-goods/confirm?id=88883", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9df76779-7b9d-4833-baba-a75ca47da588-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "a07c1539-e21c-448f-aa1d-6830820fd374-attachment.json", "type": "application/json"}], "start": 1775460572747, "stop": 1775460572747}, {"name": "Response → 200, trace_id: 3ebc758f135bed39bc1dbe7d82895976", "status": "passed", "attachments": [{"name": "response.headers", "source": "7ea06dcb-f72d-4472-848a-03380bfb3b96-attachment.json", "type": "application/json"}], "start": 1775460572747, "stop": 1775460572747}], "attachments": [{"name": "cURL", "source": "476adcde-6b9a-445e-a63f-d2c30b024bec-attachment.txt", "type": "text/plain"}], "start": 1775460572747, "stop": 1775460572747}, {"name": "Waiter function: wait_lost_good", "status": "passed", "start": 1775460572749, "stop": 1775460572751}], "attachments": [{"name": "log", "source": "369c2e74-8e2a-4ca2-9264-9658a3f205d9-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": 1775460558657, "stop": 1775460872765, "uuid": "f9272619-1b7a-4112-9c34-38e36abf2d9d", "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-pikdvvke"}, {"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"]}