{"name": "test_no_goods_confirm_zero_picking[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: 4278192727 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 0x7aa6db315290>\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 0x7aa6d919c150>)\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 = 4278192727, 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: 4278192727 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": "2840236a-8fcb-494d-8f74-ad2551980f5e-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "14278031-0fc9-4f82-9acd-c079cf0423a6-attachment.json", "type": "application/json"}], "start": 1775724176755, "stop": 1775724176755}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "a1ca82b6-cf54-485e-8682-9a9e23592954-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "63a7e46e-1225-439e-8b17-8ff2b4c5686e-attachment.json", "type": "application/json"}], "start": 1775724176761, "stop": 1775724176761}], "start": 1775724176755, "stop": 1775724176764}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "c87d2f2b-2771-4c62-ab65-952e7231c40f-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "9b39197d-4d99-491f-8447-3618b4a599a3-attachment.json", "type": "application/json"}], "start": 1775724176776, "stop": 1775724176776}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "c7094a90-8227-478d-8b7a-e4fd8c78b9f2-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "7e6c49a8-ba30-453f-8294-29905020fe6e-attachment.json", "type": "application/json"}], "start": 1775724176776, "stop": 1775724176777}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "f40d52ed-90cc-472b-bf9e-e6a447169e9f-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "7f574ce0-19b4-4ab4-9a9c-e1c7141a0da6-attachment.json", "type": "application/json"}], "start": 1775724176777, "stop": 1775724176777}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "ee088d35-7315-4e44-a53d-254682b4dcd6-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "0a0ff7a7-bf47-4691-b0a5-a29ab1b49bef-attachment.json", "type": "application/json"}], "start": 1775724176778, "stop": 1775724176778}, {"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": "27d31335-0610-493a-9fdb-65702b0fdcd5-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "68e0c3cc-59e1-4ef2-9e74-579b4677b613-attachment.json", "type": "application/json"}], "start": 1775724176809, "stop": 1775724176809}, {"name": "Response → 200, trace_id: 6856faf8ac2c2e9e3e8517c48554463c", "status": "passed", "attachments": [{"name": "response.headers", "source": "24e365c8-8446-4a42-bc1a-3badca3ec2d2-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "03e202a2-3b1e-47d2-8ff4-dcfb626dd3e9-attachment.json", "type": "application/json"}], "start": 1775724176809, "stop": 1775724176809}], "attachments": [{"name": "cURL", "source": "757f199f-7358-4b1d-8bf3-464581ede306-attachment.txt", "type": "text/plain"}], "start": 1775724176809, "stop": 1775724176809}], "start": 1775724176779, "stop": 1775724176812}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "c71615b6-5be8-4cd2-9cd6-c00f676167d5-attachment.json", "type": "application/json"}, {"name": "Response", "source": "32e839f3-8f49-4dda-9611-41022f6c2c43-attachment.json", "type": "application/json"}], "start": 1775724176839, "stop": 1775724176868}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775724176869, "stop": 1775724179226}, {"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": "be7c01d2-4698-40b5-8d19-2c7c5c0a6e36-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c3cf76e8-c4d3-400f-96a1-4d134667f200-attachment.json", "type": "application/json"}], "start": 1775724180449, "stop": 1775724180449}, {"name": "Response → 200, trace_id: d863a563295ba99651b9a0ec2b03e112", "status": "passed", "attachments": [{"name": "response.headers", "source": "6bcb22bc-1236-46db-9cd0-afb0eed0b694-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8c4244d2-c361-4529-bde0-1d698f585cfd-attachment.json", "type": "application/json"}], "start": 1775724180449, "stop": 1775724180449}], "attachments": [{"name": "cURL", "source": "d8227430-3556-4211-a8f5-578f3b4db662-attachment.txt", "type": "text/plain"}], "start": 1775724180449, "stop": 1775724180449}, {"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": "a2ae678c-daf6-4906-bf4e-f0f54477ccd2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "06b32aab-06ed-48a7-9e03-14ea886a601f-attachment.json", "type": "application/json"}], "start": 1775724180500, "stop": 1775724180500}, {"name": "Response → 200, trace_id: 0bfd826929258b033090773e4d5a5ef2", "status": "passed", "attachments": [{"name": "response.headers", "source": "625fac26-611f-44d1-9094-10a31323cd74-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "987f08c9-716d-4170-987e-45ca7f2df9fb-attachment.json", "type": "application/json"}], "start": 1775724180500, "stop": 1775724180500}], "attachments": [{"name": "cURL", "source": "5d1e5f31-1370-4576-bcab-6ab045eb1e83-attachment.txt", "type": "text/plain"}], "start": 1775724180500, "stop": 1775724180500}, {"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": "ce59900c-6609-4c49-9e77-9266ca50e63d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4d93d78e-63d8-40c3-98a7-5eb9a43099d4-attachment.json", "type": "application/json"}], "start": 1775724180553, "stop": 1775724180553}, {"name": "Response → 200, trace_id: 078a90e8688eb4c76c768534604e694a", "status": "passed", "attachments": [{"name": "response.headers", "source": "eaa363ac-8b88-4d48-9b5f-a53fa12cb690-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "fad27fd8-dde2-4704-a88a-79f22705cd7e-attachment.json", "type": "application/json"}], "start": 1775724180553, "stop": 1775724180553}], "attachments": [{"name": "cURL", "source": "396a1f37-2afb-4168-84a2-1351159107c9-attachment.txt", "type": "text/plain"}], "start": 1775724180552, "stop": 1775724180553}, {"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": "42cfa75b-f649-42c8-bbfb-c3b5e523ecc0-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "2bbb1144-2331-44b9-b032-f853eb100f31-attachment.json", "type": "application/json"}], "start": 1775724180596, "stop": 1775724180596}, {"name": "Response → 200, trace_id: 6e4ea57d2e7b715ecfdbf0cdc08d1bd0", "status": "passed", "attachments": [{"name": "response.headers", "source": "766c5152-86e4-47a7-a10f-02e2283f1779-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "71782035-57e9-4281-9bb2-2fbdb21b5c34-attachment.json", "type": "application/json"}], "start": 1775724180596, "stop": 1775724180597}], "attachments": [{"name": "cURL", "source": "5e0b675f-fdf4-4550-9e45-64aabb538bb2-attachment.txt", "type": "text/plain"}], "start": 1775724180596, "stop": 1775724180597}, {"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": "3242f58e-fd5e-45da-98a8-e0df22afefa2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f8b63d0c-5a21-4613-ab9e-2b3bae950bfb-attachment.json", "type": "application/json"}], "start": 1775724180626, "stop": 1775724180626}, {"name": "Response → 200, trace_id: c6fc95f8b90f1c024dd7a88792d588d4", "status": "passed", "attachments": [{"name": "response.headers", "source": "9afab24d-002a-46ab-bd6c-eb6c35810822-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "426a27de-c5b5-4fbf-bc8c-cc2ff734d875-attachment.txt", "type": "text/plain"}], "start": 1775724180626, "stop": 1775724180627}], "attachments": [{"name": "cURL", "source": "55d06bf7-f31b-4c6d-8fed-992a706e2a68-attachment.txt", "type": "text/plain"}], "start": 1775724180626, "stop": 1775724180627}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000493005&pickingTaskKey=1e21a3ccdde89d89aad0fc6786ebc6882a6ab92ef41abfb4d91259c9e73b0c6a", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "075f16e9-cac6-41fc-b790-90cddb7b9fcf-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "d6baa885-c03a-4c31-9148-83fc207163ba-attachment.json", "type": "application/json"}], "start": 1775724180658, "stop": 1775724180658}, {"name": "Response → 200, trace_id: 36283d27f346cefded9742e6b0ad7d35", "status": "passed", "attachments": [{"name": "response.headers", "source": "5b332eb1-781b-4a27-a366-e09fd6b5fe86-attachment.json", "type": "application/json"}], "start": 1775724180658, "stop": 1775724180659}], "attachments": [{"name": "cURL", "source": "85bae37a-45fb-46fe-9d3f-bcd9c545ee62-attachment.txt", "type": "text/plain"}], "start": 1775724180658, "stop": 1775724180659}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=1e21a3ccdde89d89aad0fc6786ebc6882a6ab92ef41abfb4d91259c9e73b0c6a&skuId=4100000000000053655&cellBarcode=QA-75724175572905472&cellId=488674", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d22fb780-e15d-429d-8349-0972e48e7a9d-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "615c3d9b-5f35-4279-9592-3f28ff1bc947-attachment.json", "type": "application/json"}], "start": 1775724190878, "stop": 1775724190878}, {"name": "Response → 200, trace_id: c84475644045dc536fcc647dce3ed5a0", "status": "passed", "attachments": [{"name": "response.headers", "source": "89753a8e-ee72-48a8-9281-999a79569a25-attachment.json", "type": "application/json"}], "start": 1775724190878, "stop": 1775724190878}], "attachments": [{"name": "cURL", "source": "621c2bde-35a1-4fa9-87d6-7eaa5d7a6978-attachment.txt", "type": "text/plain"}], "start": 1775724190878, "stop": 1775724190878}, {"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": "b9d31c1b-4a6a-4b21-9c7d-bc7917cf5b43-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "54c607cd-17b9-483a-8efa-4613cf36e092-attachment.json", "type": "application/json"}], "start": 1775724190912, "stop": 1775724190913}, {"name": "Response → 200, trace_id: 089e45d3f3048ae7d80f31bcea5d0cad", "status": "passed", "attachments": [{"name": "response.headers", "source": "28353ee0-1d4b-49d4-b037-3b907f70115b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9f13e6c9-8c85-451f-96f4-7511eb5b1a5d-attachment.json", "type": "application/json"}], "start": 1775724190913, "stop": 1775724190913}], "attachments": [{"name": "cURL", "source": "c8b90de5-98e5-4f99-8ef2-83ca8b6f7860-attachment.txt", "type": "text/plain"}], "start": 1775724190912, "stop": 1775724190913}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "7ddd423b-4cf7-4586-bcbb-c80cc7fa3f1e-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "1cf48856-b7a1-477e-96a5-95c301f0089b-attachment.json", "type": "application/json"}], "start": 1775724190932, "stop": 1775724190932}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "af375552-76c4-4be0-9d2d-36bb796af7eb-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "da26f86f-f4f3-43a6-bdbb-be999e5cd1e5-attachment.json", "type": "application/json"}], "start": 1775724190952, "stop": 1775724190952}, {"name": "POST → https://dm-wms-be-service-availability.k8s-review.dailymail-tech.uz/lost-goods/confirm?id=88899", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f4f6092d-ec6a-4db6-b186-a63c8e77bb99-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "77c1efd4-7f25-4149-9370-00f26d5fe8af-attachment.json", "type": "application/json"}], "start": 1775724190976, "stop": 1775724190977}, {"name": "Response → 200, trace_id: 3c2b1506d5c2369f7899fcda5413be77", "status": "passed", "attachments": [{"name": "response.headers", "source": "884f167f-9095-4816-9de7-3562ac0e27d7-attachment.json", "type": "application/json"}], "start": 1775724190977, "stop": 1775724190977}], "attachments": [{"name": "cURL", "source": "2c824459-83e1-42fa-a60c-9591cad8df92-attachment.txt", "type": "text/plain"}], "start": 1775724190976, "stop": 1775724190977}, {"name": "Waiter function: wait_lost_good", "status": "passed", "start": 1775724190980, "stop": 1775724190982}], "attachments": [{"name": "log", "source": "6fe72fe6-0136-4aed-8538-bb3f5174c138-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'), WMSProvider(last_mile='Ozon', 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.OZON: 'OZON'>, provider_name='Ozon')], 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": 1775724176733, "stop": 1775724490996, "uuid": "071d7a9d-4594-4baa-87e1-8bf8f59a8df0", "historyId": "c78ae302a9a715980bcad169fe45387c", "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-1oiarb3l"}, {"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"]}