From 9bb00d53bdc7d085e3280931514aed8fcb9af2bf Mon Sep 17 00:00:00 2001 From: David Date: Thu, 10 Oct 2024 12:10:56 +0200 Subject: [PATCH] test: fix item detail test module ```console ====================================================================== ERROR setUpClass (erpnext.stock.tests.test_get_item_details.TestGetItemDetail) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/runner/frappe-bench/apps/frappe/frappe/tests/classes/integration_test_case.py", line 53, in setUpClass raise NotImplementedError( __class__ = cls = ignore = ['BOM'] to_add = ['Customer', 'Supplier', 'Item', 'Price List', 'Item Price'] NotImplementedError: IGNORE_TEST_RECORD_DEPENDENCIES is only implement for test modules within a doctype folder None ``` --- erpnext/stock/tests/test_get_item_details.py | 1 - 1 file changed, 1 deletion(-) diff --git a/erpnext/stock/tests/test_get_item_details.py b/erpnext/stock/tests/test_get_item_details.py index 8d857448027..66374c1a0b8 100644 --- a/erpnext/stock/tests/test_get_item_details.py +++ b/erpnext/stock/tests/test_get_item_details.py @@ -4,7 +4,6 @@ from frappe.tests.utils import make_test_records from erpnext.stock.get_item_details import get_item_details -test_ignore = ["BOM"] test_dependencies = ["Customer", "Supplier", "Item", "Price List", "Item Price"]